javamail开启QQ邮箱的pop3(解决邮件开发中的javax.mail.AuthenticationFailedException: 535 authentication failed的问题)

下载javamail的包(Oracle官网或github上)

https://www.oracle.com/technetwork/java/javamail/javamail144-1562675.htmljavamail开启QQ邮箱的pop3(解决邮件开发中的javax.mail.AuthenticationFailedException: 535 authentication failed的问题)_第1张图片

 

javamail开启QQ邮箱的pop3(解决邮件开发中的javax.mail.AuthenticationFailedException: 535 authentication failed的问题)_第2张图片

 

https://github.com/javaee/javamail/releases

javamail开启QQ邮箱的pop3(解决邮件开发中的javax.mail.AuthenticationFailedException: 535 authentication failed的问题)_第3张图片

 

/**
 * 
 */
package com.banyuan.test01;

import java.util.Properties;

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;


public class Test05 {
	public static void main(String[] args) throws AddressException, MessagingException {
		Properties properties = new Properties();
		properties.put("mail.transport.protocol", "smtp");// 连接协议
		properties.put("mail.smtp.host", "smtp.qq.com");// 主机名
		properties.put("mail.smtp.port", 465);// 端口号
		properties.put("mail.smtp.auth", "true");
		properties.put("mail.smtp.ssl.enable", "true");// 设置是否使用ssl安全连接 ---一般都使用
		properties.put("mail.debug", "true");// 设置是否显示debug信息 true 会在控制台显示相关信息
		// 得到回话对象
		Session session = Session.getInstance(properties);
		// 获取邮件对象
		Message message = new MimeMessage(session);
		// 设置发件人邮箱地址
		message.setFrom(new InternetAddress("[email protected]"));
		// 设置收件人邮箱地址
		message.setRecipients(Message.RecipientType.TO, new InternetAddress[] {
				new InternetAddress("[email protected]"),new InternetAddress("[email protected]")});
		// message.setRecipient(Message.RecipientType.TO, new
		// InternetAddress("[email protected]"));//一个收件人
		// 设置邮件标题
		message.setSubject("ywtest===");
		// 设置邮件内容
		message.setText("邮件内容邮件内容邮件内容ywtest");
		// 得到邮差对象
		Transport transport = session.getTransport();
		// 连接自己的邮箱账户
		//// 密码为QQ邮箱开通的stmp服务后得到的客户端授权码
		transport.connect("[email protected]", "xxxxxxx");
		// 发送邮件
		transport.sendMessage(message, message.getAllRecipients());
		transport.close();
	}
}

 

 

在进行java mail邮件开发中,如果希望通过qq邮箱进行测试。那么需要开启QQ邮箱的pop3设置。

用于解决邮件开发中的javax.mail.AuthenticationFailedException: 535 authentication failed的问题。

登录电脑版QQ邮箱,选择最上方的“设置”。
选择“账户”,切换到账户详情页面。

javamail开启QQ邮箱的pop3(解决邮件开发中的javax.mail.AuthenticationFailedException: 535 authentication failed的问题)_第4张图片


在账户页面往下拉,可以看到pop3设置,选择“开启”。

推荐使用短信验证。
按照短信验证的提示发送短信。发送成功后直接点击“我已发送”。

javamail开启QQ邮箱的pop3(解决邮件开发中的javax.mail.AuthenticationFailedException: 535 authentication failed的问题)_第5张图片

弹出的提示中直接显示16位的授权码,可以复制下来,或者是记下来,千万不要记错了。然后点击“确定”。

javamail开启QQ邮箱的pop3(解决邮件开发中的javax.mail.AuthenticationFailedException: 535 authentication failed的问题)_第6张图片


下方的收取选项一般是默认30天的,点击下拉箭头,选择“全部”,并点击页面最下方的保存更改。

点击保存更改,大功告成!

你可能感兴趣的:(Java基础)