java提供更多了JAVA MAIL用以推送电子邮件,专业术语太少说,间接上标识符:
第二步,引入jar包:
mail官方网站浏览门牌号http://www.oracle.com/technetwork/java/javamail/index-138643.html,包涵lib文件格式的大部份jar包,除了api文件格式和demo事例,就2m大小不一。浏览完了把jar包读取到你的工程项目xml。
或是采用另一类单纯的方式,假如你采用maven构筑的工程项目,间接pom.xml文件格式实用性模块减少下列标识符要是:
javax.mail
1.4.7
接着写个试验类要是,布季谢的Junit试验,你能间接放在main方式中:
package com.youxuan.util;
import org.testng.annotations.Test;
import javax.mail.*;
import javax.mail.Message.RecipientType;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Properties;
/**
* 推送电子邮件试验标识符
*
*/
public class MailTest {
@Test
public static void test() throws MessagingException {
// 实用性推送电子邮件的环境属性
final Properties props = new Properties();
/*
* 可用的属性: mail.store.protocol / mail.transport.protocol / mail.host /
* mail.user / mail.from
*/
// 表示SMTP推送电子邮件,需要进行身份验证
props.put(“mail.smtp.auth”, “true”);
props.put(“mail.smtp.host”, “smtp.163.com”);
// 发件人的账号
props.put(“mail.user”, “18864830605@163.com”);
// 访问SMTP服务时需要提供更多的密码
props.put(“mail.password”, “你的密码”);
// 构筑授权信息,用于进行SMTP进行身份验证
Authenticator authenticator = new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
// 用户名、密码
String userName = props.getProperty(“mail.user”);
String password = props.getProperty(“mail.password”);
return new PasswordAuthentication(userName, password);
}
};
// 采用环境属性和授权信息,创建电子邮件会话
Session mailSession = Session.getInstance(props, authenticator);
// 创建电子邮件消息
MimeMessage message = new MimeMessage(mailSession);
// 设置发件人
InternetAddress form = new InternetAddress(
props.getProperty(“mail.user”));
message.setFrom(form);
// 设置收件人
InternetAddress to = new InternetAddress(“1029538990@qq.com”);
message.setRecipient(RecipientType.TO, to);
// 设置抄送
InternetAddress cc = new InternetAddress(“18864830605@163.com”);
message.setRecipient(RecipientType.CC, cc);
// 设置密送,其他的收件人不能看到密送的电子邮件门牌号
InternetAddress bcc = new InternetAddress(“18864830605@163.com”);
message.setRecipient(RecipientType.CC, bcc);
// 设置电子邮件标题
message.setSubject(“试验电子邮件”);
// 设置电子邮件的内容体
message.setContent(“试验的HTML电子邮件“, “text/html;charset=UTF-8”);
// 推送电子邮件
Transport.send(message);
}
}
运行试验,去邮箱查看要是:
Git门牌号:http://git.oschina.net/lovepeng/codes/zc70spf2umylx8qeav5dw
我是90后程序员,喜欢结交朋友,欢迎各界朋友骚扰哈~
2.分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3.不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4.本站提供的源码、模板、插件等其他资源,都不包含技术服务请大家谅解!
5.如有链接无法下载或失效,请联系管理员处理!
6.本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!