I am using twilio paid account for sending sms messaging. I have also configured a callback to do some status update in my application when message is delivered to client. One o
SendMessage is the newer API call, I went thru this exact issue a few weeks ago, complicated by a few bugs :) -- see this post
Twilio developer evangelist here. The SMS endpoint is deprecated in the API and doesn't respond the same way as newer resources. The SendSmsMessage
method you are calling is using that old endpoint and SendMessage
is using the new Messages resource which behaves as you're expecting.
I recommend using SendMessage
everywhere that you need message sending.