本文以 Java 发送邮件功能,采用commons-email模式执行
依赖
1 | <!-- 发送邮件 --> |
代码
1 |
|
设置
新浪

String mailServer = smtp.sinanet.com
Integer mailPort = 25
boolean ssl = false
网易


如若开启了授权密码,请以授权密码当做用户密码使用
String mailServer = smtp.163.com
Integer mailPort = 25
boolean ssl = false

如若开启了授权密码,请以授权密码当做用户密码使用
String mailServer = smtp.qq.com
Integer mailPort = 465
boolean ssl = true
测试
1 | @Test |