您的位置:首页 > 编程语言 > Java开发

java mail发送邮件demo 代码

2014-06-09 17:10 197 查看
java mail发送邮件demo,引入mail.jar,运行测试发送ok
[代码][Java]代码
01
import java.util.Date;
02
import java.util.Properties;
03

04
import javax.mail.Authenticator;
05
import javax.mail.Message;
06
import javax.mail.MessagingException;
07
import javax.mail.PasswordAuthentication;
08
import javax.mail.Session;
09
import javax.mail.Transport;
10
import javax.mail.internet.MimeMessage;
11

12
public class MailTest2 {
13

14
static Authenticator auth = new Authenticator() {
15

16
@Override
17
protected PasswordAuthentication getPasswordAuthentication() {
18
return new PasswordAuthentication("906985170@qq.com", "fuck");
19
}
20

21
};
22

23
public static void main(String[] args) {
24

25
Properties props = new Properties();
26
props.put("mail.smtp.host", "smtp.qq.com");
27
props.put("mail.smtp.auth", "true");
28
props.put("mail.from", "906985170@qq.com");
29
Session session = Session.getInstance(props, auth);
30
try {
31
MimeMessage msg = new MimeMessage(session);
32
msg.setFrom();
33
msg.setRecipients(Message.RecipientType.TO, "tong695@163.com");
34
msg.setSubject("JavaMail hello world example");
35
msg.setSentDate(new Date());
36
msg.setText("Hello, world!\n");
37
Transport.send(msg);
38
} catch (MessagingException mex) {
39
System.out.println("send failed, exception: " + mex);
40
}
41

42
}
43
}
导航菜单CSS文章来源:http://www.huiyi8.com/daohang/css/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: