PasswordAuthentication

PasswordAuthentication

本文介绍了使用 Office365 发送 javamail的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在配置通过 Office365 使用 javax.mail (1.4.4) 发送邮件的 SMTP 设置时遇到问题,所以我想我会在这里为其他人发布这些属性.

解决方案

使用Office365 smtp详情如下:

私有静态属性道具;私有静态会话会话;静止的 {道具 = 新属性();props.put("mail.smtp.starttls.enable", "true");props.put("mail.smtp.port", "587");props.put("mail.smtp.host", "m.outlook.com");props.put("mail.smtp.auth", "true");session = Session.getInstance(props, new Authenticator() {@覆盖受保护的 PasswordAuthentication getPasswordAuthentication() {return new PasswordAuthentication("office365邮箱",office365密码");}});}

I'm having trouble configuring the SMTP settings for sending mail using javax.mail (1.4.4) through Office365, so I thought I'd post the properties here for others.

解决方案

Use Office365 smtp details as below:

这篇关于使用 Office365 发送 javamail的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 18:42