我将Json转发给Lambda,后者最终致电
pinpoint.sendMessages(params, function(err, data){}
Pinpoint中是否可以通过任何方式在标头信息中发送自定义标头,例如emailID
。
答案 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 email或send email using the SMTP interface的即用型代码示例。
我希望这会有所帮助!
Brent @ AWS