Sending html content in AWS SNS(Simple Notification Service) emails notifications

后端 未结 1 715
甜味超标
甜味超标 2020-11-29 10:21

I am using AWS SNS(Simple Notification Service) to send email notifications. In the content of the email, I have to represent data in tabular form. Currentl

1条回答
  •  自闭症患者
    2020-11-29 10:45

    Amazon SNS is designed to distribute notifications. These can be received in a variety of formats, such as email, SMS, messages pushed to HTTP endpoints, mobile phone notifications and even triggering of AWS Lambda functions.

    It is not designed as a fully-featured email system. It will only send text messages and appends an 'unsubscribe' footer at the bottom of the messages.

    If you wish to send formatted emails, consider using Amazon Simple Email Service (SES), which improves email deliverability. Any content passed into Amazon SES is sent out to recipients, including HTML.

    Amazon SNS is primarily about notification, rather than pretty content.

    0 讨论(0)
提交回复
热议问题