论坛首页 Java企业应用论坛

在java应用程序中加入发送邮件的功能

浏览 8457 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2008-10-12  
javaMai 为建立邮件和消息服务提供了框架,因而应用程序可以发送和接收邮件.JavaMail API 是一个用于阅读、编写和发送电子消息的可选包(标准扩展),可以用来建立基于标准的电子邮件客户机,它配置了各种因特网邮件协,包括SMTP 、POP 、IMAP和 MIME ,还包括相关的NNTP 、S/MIME 及其它协议。
   通常开发JavaMail 程序通常需要mail.jar 和 activation.jar 两个架包。mail.jar包含mailapi.jar、pop3.jar 和 smtp.jar。mailapi.jar包含核心的API 类, pop3.jar 和 smtp.jar为各自的邮件协议包含实现方法. activation.jar处理 MIME (多用途因特网邮件扩展)类型。

   核心JavaMail API 由七个类组成:Session 、Message 、Address 、Authenticator 、Transport 、Store 及 Folder ,它们都来自javax.mail 、即JavaMail API 顶级包。可以用这些类完成大量常见的电子邮件任务,包括发送消息、检索消息、删除消息、认证、回复消息、转发消息、管理附件、处理基于HTML文件格式的消息以及搜索或过滤邮件列表。
这里只具体说明一下发送邮件的JavaMail类:
1.Session
  这个Session类代表JavaMail 中的一个邮件session. 每一个基于 JavaMail的应用程序至少有一个session但是可以有任意多的session。
     在这个例子中, Session对象需要知道用来处理邮件的SMTP 服务器。JavaMail需要Properties来创建一个session对象
  Session sendMailSession;
    Properties props = new Properties ();
  props.put("mail.smtp.host", "smtp.sina.com.cn");//可以换上你的smtp主机名。
  sendMailSession = Session.getInstance(props, null);
2.Transport
  Transport 是用来发送信息的.
  用法:Transport transport;
  transport = sendMailSession.getTransport("smtp");
  用JavaMail Session对象的getTransport 方法来初始化Transport。传过去的字符串申明了对象所要使用的协议,如"smtp"。这是因为JavaMail以境内置了很多协议的实现方法。
  注意: JavaMail并不是绝对支持每一个协议,目前支持IMAP、 SMTP和 POP3。
3.Message
  Message对象将存储我们实际发送的电子邮件信息,Message对象被作为一个MimeMessage对象来创建并且需要知道应当选择哪一个JavaMail session。
  使用方法:Message newMessage = new MimeMessage(sendMailSession);
4.MimeMessage
    实现Message接口,以显示Mime风格的消息
5.InternetAddress
    存储电子邮件中关于“from”、“to”域的信息


用JavaMail发送电子邮件的过程比较简单,大致分为以下5个步骤:
1.创建Properties 对象,设置邮件服务器属性:mail.smtp.host ,即指定你的SMTP服务器。
2.建立一个邮件会话
3.创建你的邮件信息对象,该对象包含了你的邮件的全部内容,包括发送人,接受人,标题,正文,附件等内容
4.完成发送前的服务器验证
5.发送邮件



以下是代码,在这里发送人和接收人都是用的新浪邮箱,没有加入发送附件的功能
package test;
import java.io.*;
import java.text.*;
import java.util.*;
port javax.activation.DataHandler;
import javax.activation.FileDataSource;
import javax.mail.*;
import javax.mail.internet.*;

public class SimpleSender {
 
 public static void main(String args[]) {
  try {
   String smtpServer = "smtp.sina.com.cn";
   String to = "test1@sina.com.cn";
   String from = "test2@sina.com.cn";
   String subject = "hello";
   String body = "";
   send(smtpServer, to, from, subject, body);
  } catch (Exception ex) {
   System.out.println("Usage: java test.SimpleSender"
     + " smtpServer toAddress fromAddress subjectText bodyText");
  }

 }

 public static void send(String smtpServer, String to, String from,
   String subject, String body) {
  try {
    Properties props = System.getProperties();
    props.put("mail.smtp.host", smtpServer);
    props.put("mail.smtp.auth","true");  
    Authenticator  sa = new SmtpAuth(from, "");
           Session session = Session.getDefaultInstance(props,sa);
           InternetAddress     fromadress   =   new   InternetAddress(from);  
           javax.mail.internet.InternetAddress   toadress=   new   javax.mail.internet.InternetAddress   (to);  
           javax.mail.internet.MimeMessage     mymessage   =   new   javax.mail.internet.MimeMessage   (session);  
           mymessage.setFrom(fromadress);  
           mymessage.setRecipient(Message.RecipientType.TO   ,toadress);  
           mymessage.setSentDate(new   java.util.Date());  
           mymessage.addHeader("header","test")   ;  
           mymessage.setSubject(subject)   ;  
           mymessage.setText("hello")   ;  
           Transport   tt=session.getTransport("smtp");  
           tt.send(mymessage);  
  } catch (Exception ex) {
   System.out.println(ex.toString());
  }
  
 }
}  
   发表时间:2008-10-12  
我没有用sina的邮箱测试..我用126的邮箱测试是不可以的..

如果要是公司自己的邮件服务器是肯定可以的.

公司没有搭建的话.我是用的gmail的邮件..上面还有安全验证.

这样的main函数的没有跑通..使用的spring的邮件集成的.配置如下:


<!-- our Authenticator implementation toeomail#gmail-->
	<bean id="smtpAuthenticator"
		class="com.XXXX.SmtpAuthenticator">
		<constructor-arg value="XXXXXl@gmail.com" />
		<constructor-arg value="XXXXXXX" />
	</bean>

	<!-- now setup an authenticated session -->
	<bean id="mailSession" class="javax.mail.Session"
		factory-method="getInstance">
		<constructor-arg>
			<props>
				<prop key="mail.smtp.auth">true</prop>
				<prop key="mail.smtp.socketFactory.port">465</prop>
				<prop key="mail.smtp.socketFactory.class">
					javax.net.ssl.SSLSocketFactory
				</prop>
				<prop key="mail.smtp.socketFactory.fallback">
					false
				</prop>
			</props>
		</constructor-arg>
		<constructor-arg ref="smtpAuthenticator" />
	</bean>

	<!-- and configure the MailSender with the authenticated session -->
	<bean id="mailSender"
		class="org.springframework.mail.javamail.JavaMailSenderImpl">
		<property name="host" value="smtp.gmail.com" />
		<property name="session" ref="mailSession" />
	</bean>

	<!-- this is a template message that we can pre-load with default state -->
	<bean id="templateMessage"
		class="org.springframework.mail.SimpleMailMessage">
		<property name="from" value="XXXXX@gmail.com" />
		<property name="subject" value="Testing" />
	</bean>

	<bean id="sendMailService"
		class="com.XXXXX.SendMailService">
		<constructor-arg ref="mailSender" />
		<constructor-arg ref="templateMessage" />
	</bean>



参考的gmail配置 网上有相应的文章  gmail的spring的配置..

除了普通的登录还有一个ssl登录..而且..你要是用这个邮箱发送邮件的时候过一阵子就发不了了..
gmail就会给你的邮件上面添加验证码..还要自己再次手动登录.激活邮箱...

这种公共的邮箱应该就是有这样的限制吧..自己的邮箱用着方便些...
0 请登录后投票
   发表时间:2008-10-12  
toeo 写道

我没有用sina的邮箱测试..我用126的邮箱测试是不可以的.. 如果要是公司自己的邮件服务器是肯定可以的. 公司没有搭建的话.我是用的gmail的邮件..上面还有安全验证. 这样的main函数的没有跑通..使用的spring的邮件集成的.配置如下:


Xml代码

&nbsp;&nbsp;
&lt;!--&nbsp;our&nbsp;Authenticator&nbsp;implementation&nbsp;toeomail#gmail--&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;bean&nbsp;id="smtpAuthenticator"&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;class="com.XXXX.SmtpAuthenticator"&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;constructor-arg&nbsp;value="XXXXXl@gmail.com"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;constructor-arg&nbsp;value="XXXXXXX"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/bean&gt;&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;!--&nbsp;now&nbsp;setup&nbsp;an&nbsp;authenticated&nbsp;session&nbsp;--&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;bean&nbsp;id="mailSession"&nbsp;class="javax.mail.Session"&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;factory-method="getInstance"&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;constructor-arg&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;props&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;prop&nbsp;key="mail.smtp.auth"&gt;true&lt;/prop&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;prop&nbsp;key="mail.smtp.socketFactory.port"&gt;465&lt;/prop&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;prop&nbsp;key="mail.smtp.socketFactory.class"&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;javax.net.ssl.SSLSocketFactory &nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/prop&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;prop&nbsp;key="mail.smtp.socketFactory.fallback"&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;false &nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/prop&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/props&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/constructor-arg&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;constructor-arg&nbsp;ref="smtpAuthenticator"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/bean&gt;&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;!--&nbsp;and&nbsp;configure&nbsp;the&nbsp;MailSender&nbsp;with&nbsp;the&nbsp;authenticated&nbsp;session&nbsp;--&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;bean&nbsp;id="mailSender"&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;class="org.springframework.mail.javamail.JavaMailSenderImpl"&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;property&nbsp;name="host"&nbsp;value="smtp.gmail.com"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;property&nbsp;name="session"&nbsp;ref="mailSession"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/bean&gt;&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;!--&nbsp;this&nbsp;is&nbsp;a&nbsp;template&nbsp;message&nbsp;that&nbsp;we&nbsp;can&nbsp;pre-load&nbsp;with&nbsp;default&nbsp;state&nbsp;--&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;bean&nbsp;id="templateMessage"&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;class="org.springframework.mail.SimpleMailMessage"&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;property&nbsp;name="from"&nbsp;value="XXXXX@gmail.com"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;property&nbsp;name="subject"&nbsp;value="Testing"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/bean&gt;&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;bean&nbsp;id="sendMailService"&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;class="com.XXXXX.SendMailService"&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;constructor-arg&nbsp;ref="mailSender"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;constructor-arg&nbsp;ref="templateMessage"&nbsp;/&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/bean&gt;&nbsp;&nbsp;
&lt;!-- our Authenticator implementation toeomail#gmail--&gt;
&lt;bean id="smtpAuthenticator"
class="com.XXXX.SmtpAuthenticator"&gt;
&lt;constructor-arg value="XXXXXl@gmail.com" /&gt;
&lt;constructor-arg value="XXXXXXX" /&gt;
&lt;/bean&gt;

&lt;!-- now setup an authenticated session --&gt;
&lt;bean id="mailSession" class="javax.mail.Session"
factory-method="getInstance"&gt;
&lt;constructor-arg&gt;
&lt;props&gt;
&lt;prop key="mail.smtp.auth"&gt;true&lt;/prop&gt;
&lt;prop key="mail.smtp.socketFactory.port"&gt;465&lt;/prop&gt;
&lt;prop key="mail.smtp.socketFactory.class"&gt;
javax.net.ssl.SSLSocketFactory
&lt;/prop&gt;
&lt;prop key="mail.smtp.socketFactory.fallback"&gt;
false
&lt;/prop&gt;
&lt;/props&gt;
&lt;/constructor-arg&gt;
&lt;constructor-arg ref="smtpAuthenticator" /&gt;
&lt;/bean&gt;

&lt;!-- and configure the MailSender with the authenticated session --&gt;
&lt;bean id="mailSender"
class="org.springframework.mail.javamail.JavaMailSenderImpl"&gt;
&lt;property name="host" value="smtp.gmail.com" /&gt;
&lt;property name="session" ref="mailSession" /&gt;
&lt;/bean&gt;

&lt;!-- this is a template message that we can pre-load with default state --&gt;
&lt;bean id="templateMessage"
class="org.springframework.mail.SimpleMailMessage"&gt;
&lt;property name="from" value="XXXXX@gmail.com" /&gt;
&lt;property name="subject" value="Testing" /&gt;
&lt;/bean&gt;

&lt;bean id="sendMailService"
class="com.XXXXX.SendMailService"&gt;
&lt;constructor-arg ref="mailSender" /&gt;
&lt;constructor-arg ref="templateMessage" /&gt;
&lt;/bean&gt;

参考的gmail配置 网上有相应的文章&nbsp; gmail的spring的配置.. 除了普通的登录还有一个ssl登录..而且..你要是用这个邮箱发送邮件的时候过一阵子就发不了了.. gmail就会给你的邮件上面添加验证码..还要自己再次手动登录.激活邮箱... 这种公共的邮箱应该就是有这样的限制吧..自己的邮箱用着方便些...

Gmail与其他邮箱不同的是Gmail提供的POP3和SMTP是使用安全套接字层SSL的,因此上述编码的程序是无法收发邮件的
0 请登录后投票
   发表时间:2008-10-12  
gmail smtp服务器地址:smtp.gmail.com
发件人邮箱:test@gmail.com
收件人邮箱:test@sina.com.cn
以下代码测试通过,能正常发邮件
import java.security.Security;
import java.util.Date;
import java.util.Properties;

import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;


public class GmailSender {
	public static void main(String[] args) throws AddressException, MessagingException {
		  Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
		  final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
		  // Get a Properties object
		  Properties props = System.getProperties();
		  props.setProperty("mail.smtp.host", "smtp.gmail.com");
		  props.setProperty("mail.smtp.socketFactory.class", SSL_FACTORY);
		  props.setProperty("mail.smtp.socketFactory.fallback", "false");
		  props.setProperty("mail.smtp.port", "465");
		  props.setProperty("mail.smtp.socketFactory.port", "465");
		  props.put("mail.smtp.auth", "true");
		  final String username = "test";
		  final String password = "test";
		  Session session = Session.getDefaultInstance(props, new Authenticator(){
		      protected PasswordAuthentication getPasswordAuthentication() {
		          return new PasswordAuthentication(username, password);
		      }});

		       // -- Create a new message --
		  Message msg = new MimeMessage(session);

		  // -- Set the FROM and TO fields --
		  msg.setFrom(new InternetAddress(username + "@gmail.com"));
		  msg.setRecipients(Message.RecipientType.TO, 
		    InternetAddress.parse("test@sina.com.cn",false));
		  msg.setSubject("Hello");
		  msg.setText("How are you");
		  msg.setSentDate(new Date());
		  Transport.send(msg);
		  
		  System.out.println("Message sent.");
		 }


}
0 请登录后投票
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics