java mail發送郵件demo 代碼

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("[email protected]", "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", "[email protected]");
29
        Session session = Session.getInstance(props, auth);
30
        try {
31
            MimeMessage msg = new MimeMessage(session);
32
            msg.setFrom();
33
            msg.setRecipients(Message.RecipientType.TO, "[email protected]");
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/
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章