博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
利用java mail发送邮件(转)
阅读量:6280 次
发布时间:2019-06-22

本文共 4159 字,大约阅读时间需要 13 分钟。

JavaMail是SUN提供给开发者在应用程序中实现邮件发送和接收功能而提供的一套标准开发类库,支持经常使用的邮件协议,如SMTP、POP3、IMAP。开发者使用JavaMail编写邮件程序时,无需考虑底层的通信细节(Socket)。JavaMail也提供了可以创建出各种复杂MIME格式的邮件内容的API。

使用JavaMail。我们可以实现类似OutLook、FoxMail的软件。

尽管JavaMail(仅支持JDK4及以上)也是Java的API之中的一个,可是却没有直接增加到JDK中,所以我们须要另行下载。另外,JavaMail依赖JAF(JavaBeans Activation Framework),JAF在Java6之后已经合并到JDK中,而JDK5之前须要另外下载JAF的类库。下载地址例如以下:

 欢迎訪问来获取很多其它信息

 利用这个api。之前写的那个就有了邮件通知管理员的功能啦~

事实上仅仅须要那个javax.mail.jar,把这个jar包导入到你的项目以下就可以。

JavaMail包括两部分内容。一部分是JavaMail API,定义了一组平台无关、独立于通讯协议的邮件程序框架,该部分称为应用级接口,也就是供我们调用的部分。还有一部分是service provider。该部分使用特定的协议语言来实现第一部分定义的抽象类和接口。这些协议包括:SMTP、NNTP、POP3、IMAP,假设让JavaMail与邮件server通信。就须要对应的协议支持,该部分称为服务提供者接口。也就是JavaMail自身须要的协议支持。

在使用JavaMail时,通常我们仅仅需将mail.jar放在classpath下使用。它包括了JavaMail API部分和SUN自己实现的service provider部分。可能也有特殊的时候,我们应用程序中须要自己实现service provider部分,那我们仅仅须要mailapi.jar。以下通过几个类来简单认识下JavaMail API:

javax.mail.Session:上下文环境信息,如server的主机名、端口号、协议名称等  javax.mail.Message:邮件模型。发送邮件和接收邮件的媒介,封装了邮件的信息。如发件人、收件人、邮件标题、邮件内容等  javax.mail.Transport:连接邮件SMTPserver,发送邮件  javax.mail.Store:连接邮件POP3、IMAPserver,收取邮件

通过这些类。终于就能够实现收发邮件,一个发送邮件的简单演示样例:

public class JavaMailTest1 {    public static void main(String[] args) throws MessagingException {        Properties props = new Properties();        // 开启debug调试        props.setProperty("mail.debug", "true");        // 发送server须要身份验证        props.setProperty("mail.smtp.auth", "true");        // 设置邮件server主机名        props.setProperty("mail.host", "smtp.163.com");        // 发送邮件协议名称        props.setProperty("mail.transport.protocol", "smtp");                // 设置环境信息        Session session = Session.getInstance(props);                // 创建邮件对象        Message msg = new MimeMessage(session);        msg.setSubject("JavaMail測试");        // 设置邮件内容        msg.setText("这是一封由JavaMail发送的邮件!

"

);
// 设置发件人 msg
.setFrom(
new
InternetAddress(
"java_mail_001@163.com"));
Transport transport
= session
.getTransport();
// 连接邮件server transport
.connect(
"java_mail_001",
"javamail");
// 发送邮件 transport
.sendMessage(msg,
new
Address[] {
new
InternetAddress(
"java_mail_002@163.com")});
// 关闭连接 transport
.close(); } }

终于执行后。邮件发送成功。因为我们开启了debug调试。在控制台能够看到JavaMail和server之间的交互信息记录。

创建Session对象时可能须要的属性具体信息例如以下:

Name Type Description
mail.debug boolean The initial debug mode. Default is false.
mail.from String The return email address of the current user, used by theInternetAddressmethodgetLocalAddress.
mail.mime.address.strict boolean The MimeMessage class uses the InternetAddress methodparseHeader to parse headers in messages. This property controls the strict flag passed to theparseHeader method. The default is true.
mail.host String The default host name of the mail server for both Stores and Transports. Used if themail.protocol.host property isn’t set.
mail.store.protocol String Specifies the default message access protocol. The SessionmethodgetStore()returns a Store object that implements this protocol. By default the first Store provider in the configuration files is returned.
mail.transport.protocol String Specifies the default message transport protocol. TheSessionmethodgetTransport() returns a Transport object that implements this protocol. By default the first Transport provider in the configuration files is returned.
mail.user String The default user name to use when connecting to the mail server. Used if themail.protocol.user property isn’t set.
mail.protocol.class String Specifies the fully qualified class name of the provider for the specified protocol. Used in cases where more than one provider for a given protocol exists; this property can be used to specify which provider to use by default. The provider must still be listed in a configuration file.
mail.protocol.host String The host name of the mail server for the specified protocol. Overrides themail.host property.
mail.protocol.port int The port number of the mail server for the specified protocol. If not specified the protocol’s default port number is used.
mail.protocol.user String The user name to use when connecting to mail servers using the specified protocol. Overrides themail.user property.

 

 

本文来自:高爽|Coder。原文地址:http://blog.csdn.net/ghsau/article/details/17839983,转载请注明。

你可能感兴趣的文章
“我意识到”的意义
查看>>
淘宝天猫上新辅助工具-新品填表
查看>>
再学 GDI+[43]: 文本输出 - 获取已安装的字体列表
查看>>
nginx反向代理
查看>>
操作系统真实的虚拟内存是什么样的(一)
查看>>
hadoop、hbase、zookeeper集群搭建
查看>>
python中一切皆对象------类的基础(五)
查看>>
modprobe
查看>>
android中用ExpandableListView实现三级扩展列表
查看>>
%Error opening tftp://255.255.255.255/cisconet.cfg
查看>>
java读取excel、txt 文件内容,传到、显示到另一个页面的文本框里面。
查看>>
《从零开始学Swift》学习笔记(Day 51)——扩展构造函数
查看>>
python多线程队列安全
查看>>
[汇编语言学习笔记][第四章第一个程序的编写]
查看>>
android 打开各种文件(setDataAndType)转:
查看>>
补交:最最原始的第一次作业(当时没有选上课,所以不知道)
查看>>
Vue实例初始化的选项配置对象详解
查看>>
PLM产品技术的发展趋势 来源:e-works 作者:清软英泰 党伟升 罗先海 耿坤瑛
查看>>
vue part3.3 小案例ajax (axios) 及页面异步显示
查看>>
浅谈MVC3自定义分页
查看>>