554邮件被拒绝的电子邮件地址未经过验证。 amazon ses-java

时间:2016-03-03 08:45:03

标签: java amazon-web-services amazon-ses

我已经一遍又一遍地验证了电子邮件地址(电子邮件都区分大小写) 我仍然拒绝接受554消息:未验证电子邮件地址拒绝来自SES。但是当我尝试使用相同的电子邮件从Amazon SES控制台发送电子邮件时,它工作正常。如果我的来自和来自电子邮件未经验证,那么从控制台也应该没有工作。无法理解发生了什么。

public class AmazonSESSample {

    static final String FROM = "from email";
    static final String TO = "to email";

    static final String BODY = "This email was sent through the Amazon SES SMTP interface by using Java.";
    static final String SUBJECT = "Amazon SES test (SMTP interface accessed using Java)";

    // Supply your SMTP credentials below. Note that your SMTP credentials are different from your AWS credentials.
    static final String SMTP_USERNAME = "SMTP USER NAME";
    static final String SMTP_PASSWORD = "SMTP PWD";

    static final String HOST = "email-smtp.us-east-1.amazonaws.com";    

    // Port we will connect to on the Amazon SES SMTP endpoint. We are choosing  port 25 because we will use
    // STARTTLS to encrypt the connection.
    static final int PORT = 25;

    public static void main(String[] args) throws Exception {

        // Create a Properties object to contain connection configuration information.
        Properties props = System.getProperties();
        props.put("mail.transport.protocol", "smtp");
        props.put("mail.smtp.port", PORT); 

        // Set properties indicating that we want to use STARTTLS to encrypt the connection.
        // The SMTP session will begin on an unencrypted connection, and then the client
        // will issue a STARTTLS command to upgrade to an encrypted connection.
        props.put("mail.smtp.auth", "true");
        props.put("mail.smtp.starttls.enable", "true");
        props.put("mail.smtp.starttls.required", "true");

        // Create a Session object to represent a mail session with the specified properties. 
        Session session = Session.getDefaultInstance(props);

        // Create a message with the specified information. 
        MimeMessage msg = new MimeMessage(session);
        msg.setFrom(new InternetAddress(FROM));
        msg.setRecipient(Message.RecipientType.TO, new InternetAddress(TO));
        msg.setSubject(SUBJECT);
        msg.setContent(BODY,"text/plain");

        // Create a transport.        
        Transport transport = session.getTransport();

        // Send the message.
        try
        {
            System.out.println("Attempting to send an email through the Amazon SES SMTP interface...");

            // Connect to Amazon SES using the SMTP username and password you specified above.
            transport.connect(HOST, SMTP_USERNAME, SMTP_PASSWORD);

            // Send the email.
            transport.sendMessage(msg, msg.getAllRecipients());
            System.out.println("Email sent!");
        }
        catch (Exception ex) {
            System.out.println("The email was not sent.");
            System.out.println("Error message: " + ex.getMessage());
            ex.printStackTrace();
        }
        finally
        {
            // Close and terminate the connection.
            transport.close();          
        }
    }
}

2 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,结果证明这是一个简单的盲目复制粘贴问题。目前,有3个地区有SES。根据您设置ID的区域,必须相应地修改HOST变量。

(=:=)/2

这解决了我的问题。之后,如果您要向未经验证的电子邮件地址发送电子邮件,则必须将设置移出沙箱。

http://docs.aws.amazon.com/ses/latest/DeveloperGuide/request-production-access.html

答案 1 :(得分:0)

这是您第一次在 SES 上使用此帐户吗?如果是这样,那么您必须处于沙盒模式

如果您的账户仍在沙盒中,您还必须验证除 Amazon SES 邮箱模拟器提供的收件人之外的每个收件人电子邮件地址。

SES Doc

您可以按照以下步骤操作:

1 登录 AWS 管理控制台。

2 转到 SES 发送限制增加。

3 填写所需的详细信息并将限制设置为您想要的使用量

Moving Out of Sandbox