更新时间:2022-08-16 08:48:32 来源:极悦 浏览946次
使用您的 Java 应用程序发送电子邮件非常简单,但首先您应该在您的机器上安装JavaMail API和Java 激活框架 (JAF) 。
您可以从 Java 的标准网站下载最新版本的JavaMail(1.2 版) 。
您可以从 Java 的标准网站下载最新版本的JAF(版本 1.1.1) 。
下载并解压缩这些文件,在新创建的顶级目录中,您会发现两个应用程序的许多 jar 文件。您需要在 CLASSPATH中添加mail.jar和activation.jar文件。
这是一个从您的机器发送简单电子邮件的示例。假设您的localhost已连接到 Internet 并且有足够的能力发送电子邮件。
例子
// File Name SendEmail.java
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";
// Get system properties
Properties properties = System.getProperties();
// Setup mail server
properties.setProperty("mail.smtp.host", host);
// 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代表黑复本。示例:Message.RecipientType.TO
地址- 这是一个电子邮件 ID 数组。您需要在指定电子邮件 ID 时使用 InternetAddress() 方法。
这是从您的机器发送 HTML 电子邮件的示例。这里假设您的localhost已连接到 Internet 并且有足够的能力发送电子邮件。
这个例子和上一个非常相似,除了这里我们使用 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";
// Get system properties
Properties properties = System.getProperties();
// Setup mail server
properties.setProperty("mail.smtp.host", host);
// 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....
这是从您的机器发送带有附件的电子邮件的示例。这里假设您的localhost已连接到 Internet 并且有足够的能力发送电子邮件。
例子
// 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";
// Get system properties
Properties properties = System.getProperties();
// Setup mail server
properties.setProperty("mail.smtp.host", host);
// 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");
其余的电子邮件发送机制将保持如上所述。
0基础 0学费 15天面授
Java就业班有基础 直达就业
业余时间 高薪转行
Java在职加薪班工作1~3年,加薪神器
工作3~5年,晋升架构
提交申请后,顾问老师会电话与您沟通安排学习