为了账号安全,请及时绑定邮箱和手机立即绑定
Java 发邮件

public class SendEmail2 {


/**

 *

 *

 */

public static void main(String[] args) throws Exception {

Properties props = new Properties();

props.setProperty("mail.smtp.auth", "true");// 必须 普通客户端

props.setProperty("mail.transport.protocol", "smtp");// 必须选择协议

props.setProperty("mail.host", "smtp.163.com");

Session session = Session.getDefaultInstance(props,

new Authenticator() {


protected PasswordAuthentication getPasswordAuthentication() {

return new PasswordAuthentication("uyikuy54@163.com", "dfw678631");

}

});

session.setDebug(true);

Message msg = new MimeMessage(session);

msg.setFrom(new InternetAddress("uyikuy54@163.com"));

msg.setSubject("hello");

msg.setRecipients(RecipientType.TO, InternetAddress.parse("54354526@qq.com"));

msg.setContent("<a style='color: #ef027c;' href='http://www.naver.com'>韩国网站</a>", "text/html;charset=utf-8");

Transport.send(msg);


}


正在回答

1 回答

???
0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
企业网站综合布局实战
  • 参与学习       157042    人
  • 解答问题       1984    个

本课程重点介绍HTML/CSS实现常见企业网站布局的方法

进入课程
意见反馈 帮助中心 APP下载
官方微信