Java使用JavaMail發送郵件的方法_java

來源:互聯網
上載者:User

本文執行個體講述了Java使用JavaMail發送郵件的方法。分享給大家供大家參考,具體如下:

代碼一、Email_Autherticator.java 伺服器驗證代碼

import javax.mail.Authenticator;import javax.mail.PasswordAuthentication;public class Email_Autherticator extends Authenticator {  String username = "你郵箱的使用者名稱";  String password = "你郵箱的密碼";  public Email_Autherticator() { super();  }  public Email_Autherticator(String user,String pwd){ super(); username = user; password = pwd;  }  public PasswordAuthentication getPasswordAuthentication(){ return new PasswordAuthentication(username,password);  }}

代碼二、Mail.java 發送郵件的代碼

import java.util.Date;import java.util.Properties;import javax.mail.Address;import javax.mail.Authenticator;import javax.mail.Message;import javax.mail.SendFailedException;import javax.mail.Session;import javax.mail.Transport;import javax.mail.internet.InternetAddress;import javax.mail.internet.MimeMessage;public class Mail {  private String host = "smtp.126.com";  private String mail_head_name = "this is head of this mail";  private String mail_head_value = "this is head of this mail";  private String mail_to = "254173774@qq.com";  private String mail_from = "hackboyo@126.com";  private String mail_subject = "this is the subject of this test mail";  private String mail_body = "this is mail_body of this test mail";  private String personalName = "我的郵件";  public void sendMail() throws SendFailedException{ try {   Properties props = new Properties();//擷取系統內容   Authenticator auth = new Email_Autherticator();//進行郵件服務使用者認證   props.put("mail.smtp.host", host);   props.put("mail.smtp.auth", "true");   System.out.println(props);   Session session = Session.getDefaultInstance(props,auth);   //設定session,和郵件伺服器進行通訊   MimeMessage message = new MimeMessage(session);   message.setContent("Hello","text/plain");//設定郵件格式   message.setSubject(mail_subject);//設定郵件主題   message.setText(mail_body);//設定郵件內容   message.setHeader(mail_head_name, mail_head_value);//設定郵件標題   message.setSentDate(new Date());//設定郵件發送時期   Address address = new InternetAddress(mail_from,personalName);   message.setFrom(address);//設定郵件寄件者的地址   Address toaddress = new InternetAddress(mail_to);//設定郵件接收者的地址   message.addRecipient(Message.RecipientType.TO,toaddress);   System.out.println(message);   Transport.send(message);   System.out.println("Send Mail Ok!"); } catch (Exception e) {   e.printStackTrace(); } //return flag;  }}

代碼三、Test.java 測試發送郵件的代碼

public class Test {  public static void main(String[] args) { Mail m = new Mail(); try {   m.sendMail(); } catch (Exception e) { }  }}

希望本文所述對大家Java程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.