How to add Cc and Bcc in Amazon SES SendRawEmail?

戏子无情 提交于 2019-11-29 07:20:53

Regarding SendRawEmail, you should be able to differentiate To, Cc, and Bcc destinations by setting them in your raw message headers. If you don't explicitly specify destinations in the request object, the headers will be checked instead. If you do, the headers won't be checked.

Here's a great example regarding this problem that JustinC@AWS shared on the AWS forums:

   Destinations: (empty)
   To: A@example.com
   Cc: B@example.com
   Bcc: C@example.com

The above message will be sent to all three of A@, B@, C@example.com. In contrast, if you send the following input:

   Destinations: A@example.com
   To: A@example.com
   Cc: B@example.com
   Bcc: C@example.com

That message will be delivered only to A@example.com.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!