关于发邮件报错535 Error:authentication failed&553 authentication is required

553 authentication is required:这个错误的意思是你必须需要认证。

也就是说,你连接smtp服务器的时候必须使用密码来连接:下面代码红色那句

代码:

 1 @Override
 2     public void run() {
 3         try {
 4             log.info("邮件创建开始了。。。。");
 5             //1.创建session
 6             Session session = Session.getInstance(prop);
 7             //2.开启session的debug模式,可以查看出email发送的情况
 8             session.setDebug(true);
 9             //3.连接发件服务器
10             Transport trans = session.getTransport();
11             trans.connect(prop.getProperty("mail.host"),prop.getProperty("mail.name"), prop.getProperty("mail.password"));
12             //4.创建邮件
13             Message message = createMessageMail(session);
14             //发送邮件
15             trans.sendMessage(message, message.getAllRecipients());
16             trans.close();
17         } catch (Exception e) {
18             log.error("创建邮件发生异常:异常为{}",e.toString());
19             e.printStackTrace();
20         }
21     }

535 Error:authentication failed:这个错误就是认证失败!

相信很多的同学明明用户名和密码填的是对的,就是说认证失败!

我刚开始也是,我简直都要气的吐血了,明明什么都是对的,就是连接不上。事实上是就算你气的再厉害还是没用的

因为这里的密码不是你邮箱的密码,是你的授权码!!!

授权码和你邮箱的密码是不一样的,关于获取授权码大家可以登录到邮件的官网:看我的截图

好了,这里大家的邮件基本是都可以发送啦!

原文地址:https://www.cnblogs.com/zfding/p/8324784.html

时间: 2024-11-09 00:07:23

关于发邮件报错535 Error:authentication failed&553 authentication is required的相关文章

git push报错:error: RPC failed; result=22, HTTP code = 413

新项目推送到服务器时报错: error: RPC failed; result=22, HTTP code = 413| 7.66 MiB/s    fatal: The remote end hung up unexpectedly 查了下,属于项目中有大文件,而http推送限制造成的,需要修改服务器配置.因为git服务器是通过nginx做反向代理之后实现的,因此需要修改nginx和appache(git服务器): 1.nginx服务器配置:/etc/nginx/conf.d/default.

SpringBoot发布WAR启动报错:Error assembling WAR: webxml attribute is required

Spring Boot发布war包流程: 1.修改web model的pom.xml <packaging>war</packaging> SpringBoot默认发布的都是jar,因此要修改默认的打包方式jar为war 2.修改web model的依赖(dependency) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boo

008-SpringBoot发布WAR启动报错:Error assembling WAR: webxml attribute is required

一.Spring Boot发布war包流程: 1.修改web model的pom.xml <packaging>war</packaging> SpringBoot默认发布的都是jar,因此要修改默认的打包方式jar为war 2.修改web model的依赖(dependency) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-b

mailx发邮件报错Error initializing NSS: Unknown error -8015. . . . message not sent.处理

前提:在配置zabbix3.0监控发送邮件告警时zabbix界面显示邮件以送达,但是QQ邮箱却没有收到邮件,再shell命令行测试发邮件QQ邮箱又是可以收到的,在别人的提醒下用zabbix用户执行发送邮件的命令,结果报错,见下图: 于是在网上搜索,参考链接 http://www.bubuko.com/infodetail-2625638.html     https://blog.51cto.com/13531029/2049796 解决方法如下: 具体原因请看参考链接里的讲解 cp -a /r

php 发邮件报错unable to get local issuer certificate

发邮件的时候报错,邮件无法发送:SSL certificate: unable to get local issuer certificate 在Windows下,curl找不到CA证书去验证对方的证书! 方法一:(极度不推荐,不安全) curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 方法二: It's easy to fix (php 5.3.7 or higher) - Download a list file with an up-to-d

python smtp发邮件报错“[Errno -2] Name or service not known”的解决

最近给ss-py-mu写了个检查用户是否到期,并在到期前的第2天邮件提醒的功能. 配置存储在ini文件中,通过configparser模块获取,但尝试发送邮件的时候发现报错[Errno -2] Name or service not known. 网上查了查说防火墙要开25和53端口,但是我本机调试是没启用防火墙的.而且这个53的DNS一般机器是不会禁用的,25我就有点不明白了,访问邮件服务器的25难道本机也要用25吗? 不过qq企业邮是用的465端口,应该没用到25吧. 最后debug发现我的

解决git报错:error: RPC failed; curl 18 transfer closed with outstanding read data remaining 的方法

报错信息: error: RPC failed; curl 18 transfer closed with outstanding read data remainingfatal: the remote end hung up unexpectedlyfatal: early EOFfatal: index-pack failed 解决方法一:网上大部分解决措施:命令终端输入如下命令,但是一般并不好使, git config --global http.postBuffer 524288000

Android4.4.4 GZIPOutputStream报错:Stream error

在android 4.4.4 机器上使用网友提供的GZipUtils方法进行GZip压缩,但是会一直报错Stream error.错误位置: public static void compress(InputStream is, OutputStream os) throws Exception { GZIPOutputStream gos = new GZIPOutputStream(os); int count; byte data[] = new byte[BUFFER]; while (

Laravel 5.4 migrate报错:Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table `users` add unique `us ers_email_unique`(`email`))

Laravel 5.4 migrate报错:Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table `users` add unique `us     ers_email_unique`(`email`)) public function up() { Schema::create('users', function (Blu