我从亚马逊服务器开始,开始研究SES.我正在使用asp.net C#并制作了基于代码的教程.我已经检查了域名,并检查了我将运行测试的电子邮件.
因此,当我运行我的代码时,它会生成以下错误消息:事务失败.服务器响应为:邮件被拒绝:未验证电子邮件地址.
我不知道它是什么因为我遵循了所有可能的步骤,单个细节尚未订购释放生产.
但我认为不可能,我还在测试服务.
我的守则
public void enviarSES02()
{
try
{
const String FROM = "verified email address";
const String TO = "verified email address";
const String SUBJECT = "Amazon SES test (SMTP interface accessed using C#)";
const String BODY = "This email was sent through the Amazon SES SMTP interface by using C#.";
const String SMTP_USERNAME = "my username"; // Replace with your SMTP username.
const String SMTP_PASSWORD = "my password"; // Replace with your SMTP password.
const …Run Code Online (Sandbox Code Playgroud)