Send Formated messages through Twilio -


i want know how can send formated messages through twilio .net api

using .net library

so requirements like. can make use of html tags?

twiliorestclient client;             client = new twiliorestclient(accountsid, authtoken);             string msg="hi dalvir, //line break  welcome website..... ....   //line break  <b>support team<b>   ";             // send sms message.             message result = client.sendmessage(....); 

twilio developer evangelist here.

you can absolutely add line breaks in sms messages. can in way include line breaks within .net.

sms messages not support html tags though, making text bold not possible.


Comments