TelAPI.TelAPIRestClient.SendSmsMessage C# (CSharp) Method

SendSmsMessage() public method

Send SMS message
public SendSmsMessage ( string from, string to, string body ) : SmsMessage
from string The number you want to display as sending the SMS. A surcharge will apply when sending via a custom From number.
to string The number you want to send the SMS to.
body string Text of the SMS message to be sent.
return SmsMessage
        public SmsMessage SendSmsMessage(string from, string to, string body)
        {
            return SendSmsMessage(from, to, body, string.Empty);
        }

Same methods

TelAPIRestClient::SendSmsMessage ( string from, string to, string body, string statusCallback ) : SmsMessage
TelAPIRestClient::SendSmsMessage ( string from, string to, string body ) : Task
TelAPIRestClient::SendSmsMessage ( string from, string to, string body, string statusCallback ) : Task