2

I am trying to integrate send promotional SMS messages to customers. For this can I use amazon SNS, and can I integrate this SNS with my web application?

I am using java and I want send group SMS with one click in my web application.

Also, is there any better solution rather than Amazon SNS?

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
Vaibhav
  • 485
  • 6
  • 12

1 Answers1

0

Amazon SNS can send messages via SMS. Sending options are:

  • Send a message to a single recipient, or
  • Subscribe multiple recipients to an SNS topic, then send the message to the SNS topic. All subscribers will receive the message.

If you wish to send a different message to each recipient, use the first option. If you are regularly sending a message to the same group of recipients, use the second option. However, if the group of recipients frequently changes, it may be easiest to send each message individually.

See documentation: Sending SMS Messages with Amazon SNS

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
  • I read that documentation, but in that there is no idea how to implement to in web application, – Vaibhav Oct 27 '16 at 11:33