<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
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=發件人郵箱全拼
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45