I am using twilio api for voice message.
my code look like:
public bool SendVoiceCall(string FromNumber, string ToNumber)
{
string URL = "http://twimlets.com/message?Message%5B0%5D=" + "hi, abc thanks for registration your code is : 7,2,4,9";
URL = URL.Replace(" ", "%20");
string AccountSid = "##########";
string AuthToken = "##########";
var twilio = new TwilioRestClient(AccountSid, AuthToken);
var options = new CallOptions();
options.To = ToNumber;
options.Url = URL;
options.From = FromNumber;
options.Method = "GET";
var call = twilio.InitiateOutboundCall(options);
}
I am having problem when call goes customer cannot listen message properly due to speed of the call message. So we need to have call in which customers can listen code properly with slow speaking words. Please advice me how can i make it slowly speaking code for my customers?
Regards, Jatin