2

プロモーション SMS メッセージを顧客に送信する機能を統合しようとしています。これには Amazon SNS を使用できますか? また、この SNS を Web アプリケーションと統合できますか?

私は Java を使用しており、Web アプリケーションでワンクリックでグループ SMS を送信したいと考えています。

また、Amazon SNS よりも優れたソリューションはありますか?

4

1 に答える 1

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

于 2016-10-27T10:21:23.370 に答える