首頁 > 軟體

JavaMail實現郵件傳送機制

2022-08-11 14:03:04

概念

JavaMail,顧名思義,提供給開發者處理電子郵件相關的程式設計介面。它是Sun釋出的用來處理email的API。它可以方便地執行一些常用的郵件傳輸。我們可以基於JavaMail開發出類似於Microsoft Outlook的應用程式。

應用場景

一般在系統的註冊模組,當用戶填入註冊資訊的郵箱時,點選儲存。系統根據使用者的資訊會自動給使用者傳送一封郵件,上面有使用者的基本資訊和注意事項,也可以用此方法實現使用者的啟用。

程式碼實現

普通方式一

1.首先引入javaMail的mail座標即jar包

jar包:mail:1.4.1

座標:

<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.4</version>
</dependency>

2.測試程式碼實現

首先引入junit 測試包

package mail.test;
import java.util.Properties;
import javax.mail.Address;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMessage.RecipientType;

import org.junit.Test;

public class Mail01Test {

    @Test
    public void testJavaMail() throws Exception{
        //1.設定郵件的一些資訊
        Properties props = new Properties();
        //傳送郵件的伺服器地址
        props.put("mail.smtp.host", "smtp.163.com");//  stmp.qq.com   smtp.sina.com
        props.put("mail.smtp.auth", "true");

        //2.建立Session物件
        Session session =Session.getInstance(props);

        //3.建立出MimeMessage,郵件的訊息物件
        MimeMessage message = new MimeMessage(session);

        //4.設定發件人
        Address fromAddr = new InternetAddress("發件人郵箱");
        message.setFrom(fromAddr);

        //5.設定收件人
        Address toAddr = new InternetAddress("收件人郵箱");
        message.setRecipient(RecipientType.TO, toAddr);

        //6.設定郵件的主題
        message.setSubject("專案進展順序");

        //7.設定郵件的正文
        message.setText("專案進展順序,所有兄弟們都非常努力,老闆今天可以請吃飯");
        message.saveChanges();//儲存更新

        //8.得到火箭
        Transport transport = session.getTransport("smtp");
        transport.connect("smtp.163.com", "發件人郵箱", "發件人密碼");//設定了火箭的發射地址
        transport.sendMessage(message, message.getAllRecipients());//傳送具體內容及接收人     
        transport.close();
    }

}

普通方式二

方式二可以帶附件和圖片

1.測試程式碼:

package mail.test;
import java.io.File;
import javax.mail.internet.MimeMessage;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.io.FileSystemResource;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;

public class Mail03Test {

    @Test
    public void testJavaMail() throws Exception{
        ApplicationContext ac = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-mail.xml");

        //得到傳送器
        JavaMailSender mailSender = (JavaMailSender) ac.getBean("mailSender");

        //得到一個MimeMessage物件
        MimeMessage message = mailSender.createMimeMessage();

        //產生出一個MimeMessageHelper helper 
        MimeMessageHelper helper = new MimeMessageHelper(message, true);//工具類本質是操作message訊息   true代表可以帶附件,圖片

        //3.使用helper工具類,設定郵件的傳送者,接收者,主題,正文
        helper.setFrom("傳送郵箱");
        helper.setTo("接收郵箱");
        helper.setSubject("傳送圖片和附件");
        helper.setText("<html><head></head><body><h1>hello!!spring image html mail</h1><a href=http://www.baidu.com>baidu</a><img src='cid:image' /></body></html>

//指定cid的取值
        FileSystemResource imgResource = new FileSystemResource(new File("E:/01分配許可權原理分析.png"));
        helper.addInline("image", imgResource);

        //帶附件
        FileSystemResource fileResource = new FileSystemResource(new File("E:/javamail1_4_4.zip"));
        helper.addAttachment("javamail1_4_4.zip", fileResource);

        //傳送
        mailSender.send(message);

    }
}

2.applicationContext-mail.xml檔案:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"       
    xmlns:p="http://www.springframework.org/schema/p"  
    xmlns:context="http://www.springframework.org/schema/context"   
    xmlns:tx="http://www.springframework.org/schema/tx"  
    xmlns:aop="http://www.springframework.org/schema/aop"  
    xsi:schemaLocation="http://www.springframework.org/schema/beans    
    http://www.springframework.org/schema/beans/spring-beans.xsd    
    http://www.springframework.org/schema/aop    
    http://www.springframework.org/schema/aop/spring-aop.xsd    
    http://www.springframework.org/schema/tx    
    http://www.springframework.org/schema/tx/spring-tx.xsd    
    http://www.springframework.org/schema/context    
    http://www.springframework.org/schema/context/spring-context.xsd">

    <description>JavaMail的組態檔</description>
    <!-- 載入mail.properties組態檔 -->
    <context:property-placeholder location="classpath:mail.properties"/>


    <!-- 簡單訊息物件建立 -->
    <bean id="mailMessage" class="org.springframework.mail.SimpleMailMessage">
         <property name="from" value="${mail.from}"></property>
    </bean>

    <!-- 2.建立傳送器 -->    
    <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
         <property name="host" value="${mail.host}"></property>
         <property name="username" value="${mail.username}"></property>
         <property name="password" value="${mail.password}"></property>
         <property name="defaultEncoding" value="UTF-8"></property>
         <property name="javaMailProperties">
            <props>
                 <prop key="mail.smtp.auth">true</prop>
                 <prop key="mail.debug">true</prop>
                 <prop key="mail.smtp.timeout">0</prop>
            </props>
         </property>
    </bean>
</beans>

2.mail.properties檔案:

mail.host=smtp.163.com
mail.username=@前面的使用者名稱
mail.password=密碼
mail.from=發件人郵箱全拼

JavaMail與Spring整合點選即可進入

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com