如何在NodeJ中发布自定义标头AWS精确电子邮件

时间:2019-12-30 04:13:37

标签: amazon-web-services aws-pinpoint

我将Json转发给Lambda,后者最终致电

pinpoint.sendMessages(params, function(err, data){}

Pinpoint中是否可以通过任何方式在标头信息中发送自定义标头,例如emailID

Send Email by Using the Amazon Pinpoint API (AWS)

1 个答案:

答案 0 :(得分:0)

您无法使用Amazon Pinpoint API中的SendMessages操作指定自定义电子邮件标题。

但是,您已经在Pinpoint中配置的发件人身份也可以在Amazon Simple Email Service(Amazon SES)中使用。您可以使用the SendRawEmail operation in the Amazon SES API用要添加的任何自定义标题创建自己的消息。

您还可以使用the SES SMTP interface通过现有的邮件客户端或其他应用程序发送电子邮件。其中许多应用程序都可让您指定自己的标题。

Amazon SES文档还包含可用于send raw emailsend email using the SMTP interface的即用型代码示例。

我希望这会有所帮助!

Brent @ AWS