Java的发送邮件

以下内容引用自http://wiki.jikexueyuan.com/project/java/sending-email.html

用Java应用程序来发送一封电子邮件是足够简单的,但是开始时应该在机器上安装有JavaMail API和Java Activation Framework(JAF)。

下载并解压这些文件,在新创建的顶级目录中将找到许多应用程序的jar文件。需要CLASSPATH中添加mail.jar和activation.jar文件。(POM项目和Eclipse工程省略这一步)

一、发送一封简单的电子邮件

这是从机器中发送一封简单的电子邮件的例子。这里假设本地主机连接到了因特网并且能够发送一封电子邮件。

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;

public class SendEmail {
    public static void main(String[] args) {
        // Recipient‘s email ID needs to be mentioned.
        String to = "[email protected]";

        // Sender‘s email ID needs to be mentioned
        String from = "[email protected]";

        // Assuming you are sending email from localhost
        String host = "localhost";//This is SMTP Server,Ex:smtp.163.com

        // set email username
        String user = "user";

        // set email password
        String password = "password";

        // Get system properties
        Properties properties = System.getProperties();

        // Setup mail server
        properties.setProperty("mail.smtp.host", host);
        properties.setProperty("mail.user", user);
        properties.setProperty("mail.password", password);

        // Get the default Session object.
        Session session = Session.getDefaultInstance(properties);

        try {
            // Create a default MimeMessage object.
            MimeMessage message = new MimeMessage(session);

            // Set From: header field of the header.
            message.setFrom(new InternetAddress(from));

            // Set To: header field of the header.
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

            // Set Subject: header field
            message.setSubject("This is the Subject Line!");

            // Now set the actual message
            message.setText("This is actual message");

            // Send message
            Transport.send(message);
            System.out.println("Sent message successfully....");
        } catch (MessagingException mex) {
            mex.printStackTrace();
        }
    }
}
//编译并运行这个程序来发送一封简单的电子邮件:
$ java SendEmail
Sent message successfully....

如果想要给多个收信者发送一封电子邮件,那么以下的方法将被用来发送给指定的多个电子邮件ID:

void addRecipients(Message.RecipientType type,  Address[] addresses) throws MessagingException

这是参数的描述:

  • type:这将被设置为TO,CC或者BCC。这里CC表示副本,BCC表示Black Carbon Copy。例如Message.RecipientType.TO。
  • addresses:这是电子邮件ID的数组。当指定电子邮件ID时,需要使用InternetAddress()。

二、发送一封HTML电子邮件

这是从机器发送一封HTML电子邮件的例子。这里假设本地主机连接到了因特网并且能够发送一封电子邮件。

这个例子和前一个非常相似,除了在这用setContent()方法来设置第二个参数为"text/html"以指定 HTML 内容被包括在消息中的内容。

使用这个例子,可以发送任何HTML内容。

//File Name SendHTMLEmail.java

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;

public class SendHTMLEmail {
    public static void main(String[] args) {

        // Recipient‘s email ID needs to be mentioned.
        String to = "[email protected]";

        // Sender‘s email ID needs to be mentioned
        String from = "[email protected]";

        // Assuming you are sending email from localhost
        String host = "localhost";//This is SMTP Server,Ex:smtp.163.com

        // set email username
        String user = "user";

        // set email password
        String password = "password";

        // Get system properties
        Properties properties = System.getProperties();

        // Setup mail server
        properties.setProperty("mail.smtp.host", host);
        properties.setProperty("mail.user", user);
        properties.setProperty("mail.password", password);

        // Get the default Session object.
        Session session = Session.getDefaultInstance(properties);

        try {
            // Create a default MimeMessage object.
            MimeMessage message = new MimeMessage(session);

            // Set From: header field of the header.
            message.setFrom(new InternetAddress(from));

            // Set To: header field of the header.
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

            // Set Subject: header field
            message.setSubject("This is the Subject Line!");

            // Send the actual HTML message, as big as you like
            message.setContent("<h1>This is actual message</h1>", "text/html");

            // Send message
            Transport.send(message);
            System.out.println("Sent message successfully....");
        } catch (MessagingException mex) {
            mex.printStackTrace();
        }
    }
}
//编译并运行这个程序来发送一封 HTML 的电子邮件:
$ java SendHTMLEmail
Sent message successfully....

三、发送电子邮件中的附件

这是一个从机器中发送一封带有附件的电子邮件的例子。这里假设本地主机连接到了因特网并且能够发送一封电子邮件。

//File Name SendFileEmail.java

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;

public class SendFileEmail {
    public static void main(String[] args) {

        // Recipient‘s email ID needs to be mentioned.
        String to = "[email protected]";

        // Sender‘s email ID needs to be mentioned
        String from = "[email protected]";

        // Assuming you are sending email from localhost
        String host = "localhost";// This is SMTP Server,Ex:smtp.163.com

        // set email username
        String user = "user";

        // set email password
        String password = "password";

        // Get system properties
        Properties properties = System.getProperties();

        // Setup mail server
        properties.setProperty("mail.smtp.host", host);
        properties.setProperty("mail.user", user);
        properties.setProperty("mail.password", password);

        // Get the default Session object.
        Session session = Session.getDefaultInstance(properties);

        try {
            // Create a default MimeMessage object.
            MimeMessage message = new MimeMessage(session);

            // Set From: header field of the header.
            message.setFrom(new InternetAddress(from));

            // Set To: header field of the header.
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

            // Set Subject: header field
            message.setSubject("This is the Subject Line!");

            // Create the message part
            BodyPart messageBodyPart = new MimeBodyPart();

            // Fill the message
            messageBodyPart.setText("This is message body");

            // Create a multipar message
            Multipart multipart = new MimeMultipart();

            // Set text message part
            multipart.addBodyPart(messageBodyPart);

            // Part two is attachment
            messageBodyPart = new MimeBodyPart();
            String filename = "file.txt";
            DataSource source = new FileDataSource(filename);
            messageBodyPart.setDataHandler(new DataHandler(source));
            messageBodyPart.setFileName(filename);
            multipart.addBodyPart(messageBodyPart);

            // Send the complete message parts
            message.setContent(multipart);

            // Send message
            Transport.send(message);
            System.out.println("Sent message successfully....");
        } catch (MessagingException mex) {
            mex.printStackTrace();
        }
    }
}
//编译并运行这个程序来发送一封 HTML 电子邮件:
$ java SendFileEmail
Sent message successfully....

四、用户身份认证部分

如果为了身份认证的目的需要给电子邮件服务器提供用户ID和密码,可以像这样设置这些属性:

 props.setProperty("mail.user", "myuser");
 props.setProperty("mail.password", "mypwd");

电子邮件发送机制的剩余部分和上述解释的一样。

测试工程:https://github.com/easonjim/5_java_example/tree/master/javabasicstest/test27

时间: 2024-10-20 14:28:00

Java的发送邮件的相关文章

java mail发送邮件

import java.io.UnsupportedEncodingException;import java.util.Date;import java.util.Properties; import javax.mail.Authenticator;import javax.mail.Message;import javax.mail.MessagingException;import javax.mail.NoSuchProviderException;import javax.mail.

java 实现发送邮件

import java.util.Properties; import javax.mail.BodyPart;import javax.mail.Message;import javax.mail.Multipart;import javax.mail.Session;import javax.mail.Transport;import javax.mail.internet.InternetAddress;import javax.mail.internet.MimeBodyPart;imp

java mail发送邮件demo 代码

java mail发送邮件demo,引入mail.jar,运行测试发送ok[代码][Java]代码     01import java.util.Date;02import java.util.Properties;0304import javax.mail.Authenticator;05import javax.mail.Message;06import javax.mail.MessagingException;07import javax.mail.PasswordAuthenticat

Java程序发送邮件

之前上网有看到过别人总结的使用java程序发送邮件,于是自己下来练习,把自己学习的一些心得总结出来. 首先我们这里需要采用两个jar包: 需要的朋友可以自行上网去CSDN类似的网站上面找 顺便把自己测试用例贴了出来,里面有些详细的注释,接下来会提醒写demo的时候大家一些注意的地方.把中间有自己遇到的问题.贴出来供大家参考. 1.首先确保发送人的邮箱  跟  接收人的邮箱  的smtp协议开着.   ------>可以上邮箱设置里面打开. 这里使用的QQ邮箱   我们可以在邮箱帮助中找到QQ邮箱

java实现发送邮件

前言:先引入javamail用到的jar包, 自己下载http://fhed.v061.10000net.cn/gulili198509051s/newjspkongjian/ueditor/jsp/upload/20130429/96951367193619671.rar package mail; import java.util.Properties; import javax.mail.Address; import javax.mail.Authenticator; import ja

java实现发送邮件工具

java实现发送邮件的功能:首先需要导入mail.jar: 然后需要写发送方法: 1.邮箱发送封装工具类: package com.wxjiameng.utils; import java.util.Date; import java.util.Properties; import javax.activation.DataHandler; import javax.activation.FileDataSource; import javax.mail.Address; import java

Java mail发送邮件附件出现.eml文件夹

在使用JAVA MAIL发送邮件时,163邮箱和QQ邮箱收到PDF附件,格式错误如下图: 163邮箱: QQ邮箱: 经历了很长时间的研究和测试,错误原因为在邮件正文和邮件附件用的MimeBodyPart对象是同一个,进而导致上述现象,解决办法为正文是一个MimeBodyPart对象,一个附件是一个MimeBodyPart对象.正确代码如下: 原文地址:https://www.cnblogs.com/XH09/p/10981329.html

java关于发送邮件的一些常见问题分享

温馨提示:由于发送邮件次数过多,会被官方标注,以至于邮件会放到垃圾邮箱,测试的小伙伴们注意了! 废话不多说,下面上代码: package com.tpyin.test; import java.util.Properties; import org.apache.commons.mail.EmailException; import org.apache.commons.mail.HtmlEmail; /** * * @author 执草书云 *发送邮箱测试 *所需jar包 *mail.jar

java免费发送邮件实现

现在项目上线一段时间了,希望能够在项目中出现异常后邮件通知给相关开发人员.我从网上找了大量的第三方接口(需要花钱)和发送邮件demo.最后选择了一个只需要引入一个jar包和一个工具类的实现,不需要配置文件,具体的工具类代码如下: package com.evan.mail; import java.util.Date; import java.util.Properties; import javax.mail.Authenticator; import javax.mail.Message;

java实现发送邮件功能

项目中实现发送邮件功能,先书写一个小Demo,记录如下: POM.XML中导入依赖 <!-- start java 提供的支持邮件发送相关业务的类 --> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> <!-- end