java发送邮件

来源:互联网 发布:日本产假多少天 知乎 编辑:程序博客网 时间:2024/06/03 21:21

话不多说,直接上代码.


public static void tet() 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("1451448363@qq.com"));// 设置收件人地址message.setRecipients(RecipientType.TO,new InternetAddress[] { new InternetAddress("1760966401@qq.com") });// 设置邮件标题message.setSubject("这是第一封Java邮件");// 设置邮件内容message.setText("内容为: 这是第一封java发送来的邮件。");// 得到邮差对象Transport transport = session.getTransport();// 连接自己的邮箱账户transport.connect("1451448363@qq.com", "rwerwerwe");// 密码为刚才得到的授权码// 发送邮件transport.sendMessage(message, message.getAllRecipients());}



然后需要注意的是..需要去邮箱里面开通smtp功能.

0 0
原创粉丝点击