Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Amazon SNS 发送 HTML 邮件?还是我需要为此使用 SES?我浏览了文档,但似乎无法使用 Amazon SNS 发送 HTML 邮件。
您可以使用 Amazon SES发送电子邮件并使用 SNS 来触发发送过程。
假设您有一个应用程序http://myapp.com,其中终端节点/api/send-email负责通过 Amazon SES 发送 HTML 电子邮件。
http://myapp.com
/api/send-email
您设置一个 Amazon SNS 主题,订阅终端节点/api/send-email以接收通知,当发生某些事情时,通知将触发电子邮件。
您可以设置/api/send-email从存储在通知中的 JSON 数据中获取参数,并使用该信息发送电子邮件。