Java:javax.mail通过163服务器发送邮件
【摘要】 依赖
<dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version>
</dependency>
12345
代码示例
package ...
依赖
<dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version>
</dependency>
- 1
- 2
- 3
- 4
- 5
代码示例
package com.example.demo;
import javax.mail.*;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Properties;
public class SendEmail { public static Properties getProperties(){ Properties properties = new Properties(); // 开启debug调试 properties.setProperty("mail.debug", "true"); // 邮件服务器 properties.setProperty("mail.smtp.host", "smtp.163.com"); // 端口号 properties.setProperty("mail.smtp.port", "25"); // 需要身份验证 properties.setProperty("mail.smtp.auth", "true"); // 发送邮件协议 properties.setProperty("mail.transport.protocol", "smtp"); return properties; } public static void main(String[] args) { // 发件人 String fromUser = "xxx@163.com"; // 客户端授权码 String password = "xxx"; // 收件人 String toUser = "xxx@qq.com"; // 获取默认session对象 Session session = Session.getInstance(getProperties()); try { // 创建默认的 MimeMessage 对象 MimeMessage message = new MimeMessage(session); // 发送人 message.setFrom(new InternetAddress(fromUser)); // 接收人 message.addRecipient(Message.RecipientType.TO, new InternetAddress(toUser)); // 标题 message.setSubject("This is the Subject Line!"); // 消息体 message.setText("This is actual message"); // 发送消息 Transport transport = session.getTransport(); transport.connect(fromUser, password); transport.sendMessage(message, new Address[]{new InternetAddress(toUser)}); transport.close(); System.out.println("Sent message successfully...."); } catch (MessagingException e) { e.printStackTrace(); } }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/107332475
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)