I'm using AWS SDK 3.0 to send SMS via AWS SNS for indian numbers. The SMS are working fine. However its not picking up the Sender ID instead shows something like DM-NOTICE or sometimes something else.
Any pointers in this direction would be much appreciated. I'm already defining the Sender ID in message attributes. Please refer the code below :
'MessageAttributes' => [
'AWS.SNS.SMS.SenderID' => [
'DataType' => 'String',
'StringValue' => 'Company Brand',
],
'AWS.SNS.SMS.SMSType' => [
'DataType' => 'String',
'StringValue' => 'Transactional',
]
],
Apparently the AWS doc http://docs.aws.amazon.com/sns/latest/dg/sms_supported-countries.html shows that Sender ID is not supported for India, however just wanted to know if I'm looking at it wrong or if there's any work around to achieve the same.