使用163 邮箱发送javamail邮件时的错误提示及原因

    技术2022-05-18  12

    (1)553 Requested action not taken: Local user only  SMTP类型的机器只允许发信人是本站用户;

           用户名或密码不正确,并且需要设置如下属性

           props.put("mail.smtp.auth", "true");(2)553 Mail from must equal authorized user

         发信人地址必须是当前登录邮箱的认证用户地址

         例如,认证时使用的用户名为:abc

         那么:String from = abc@163.com;

          message.setFrom(new InternetAddress(from));

        


    最新回复(0)