【问题标题】:E-mail is verified, but I still can't send emails using Amazon SES电子邮件已验证,但我仍然无法使用 Amazon SES 发送电子邮件
【发布时间】:2014-07-06 16:41:06
【问题描述】:

我在 AWS 控制台中有一封确定已验证的电子邮件,我还没有要求生产访问权限。我正在尝试使用本地主机中的节点应用程序发送电子邮件,但我不断收到电子邮件地址未验证的错误。

我正在使用 AWS 文档提供的代码。

var params = {
  RawMessage: { // required
  Data: 'BASE64_ENCODED_STRING', // required
},
 Destinations: [
   'STRING_VALUE',
   // ... more items ...
 ],
 Source: 'STRING_VALUE',
};
ses.sendRawEmail(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

会是什么?

【问题讨论】:

    标签: node.js email amazon-web-services amazon-ses


    【解决方案1】:

    问题是本地主机被 AWS 视为不同的区域,我不得不在其他区域再次验证电子邮件。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-08-08
      • 2018-09-09
      • 2012-06-22
      • 2016-08-22
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多