當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Spring通过Gmail SMTP服务器MailSender发送电子邮件
生活随笔
收集整理的這篇文章主要介紹了
Spring通过Gmail SMTP服务器MailSender发送电子邮件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Spring提供了一個有用的“org.springframework.mail.javamail.JavaMailSenderImpl”類,通過JavaMail?API?簡化郵件發送過程。這里有一個項目中使用Spring “JavaMailSenderImpl”通過Gmail SMTP服務器發送電子郵件。 1.?Spring郵件發件人 Java 類使用 Spring 的 MailSender 接口發送電子郵件。
Gmail的配置細節(這里是墻,該翻的翻)?–?http://mail.google.com/support/bin/answer.py?hl=en&answer=13287
File : MailMail.java
package com.yiibai.common;import org.springframework.mail.MailSender; import org.springframework.mail.SimpleMailMessage;public class MailMail {private MailSender mailSender;public void setMailSender(MailSender mailSender) {this.mailSender = mailSender;}public void sendMail(String from, String to, String subject, String msg) {SimpleMailMessage message = new SimpleMailMessage();message.setFrom(from);message.setTo(to);message.setSubject(subject);message.setText(msg);mailSender.send(message); } } 2.?bean配置文件 配置 mailSender?bean 并指定Gmail的SMTP服務器電子郵件的詳細信息。 注Gmail的配置細節(這里是墻,該翻的翻)?–?http://mail.google.com/support/bin/answer.py?hl=en&answer=13287
File : Spring-Mail.xml
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"><bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"><property name="host" value="smtp.gmail.com" /><property name="port" value="587" /><property name="username" value="yiibai.com@gmail.com" /><property name="password" value="password" /><property name="javaMailProperties"><props><prop key="mail.smtp.auth">true</prop><prop key="mail.smtp.starttls.enable">true</prop></props></property> </bean><bean id="mailMail" class="com.yiibai.common.MailMail"><property name="mailSender" ref="mailSender" /> </bean></beans>運行它
package com.yiibai.common;import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext;public class App {public static void main( String[] args ){ApplicationContext context = new ClassPathXmlApplicationContext("Spring-Mail.xml");MailMail mm = (MailMail) context.getBean("mailMail");mm.sendMail("from@no-spam.com","to@no-spam.com","Testing123", "Testing only \n\n Hello Spring Email Sender");} } 下載源代碼 –??http://pan.baidu.com/s/1gepbWEf 與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的Spring通过Gmail SMTP服务器MailSender发送电子邮件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 籡镊怎么读?
- 下一篇: 哪个牌子的香烟焦油含量最少?