java pop3发送邮件
时间: 2023-11-20 18:57:03 浏览: 119
根据提供的引用内容,我们可以知道JavaMail API是Java发送邮件的标准开发包,支持SMTP、POP3、IMAP等常用的邮件协议。下面是使用JavaMail API发送POP3邮件的步骤:
1. 导入JavaMail API和Java Activation Framework的jar包。
2. 创建一个邮件会话Session对象,需要设置邮件服务器的主机名、端口号、是否使用SSL等信息。
3. 创建一个MimeMessage对象,设置发件人、收件人、主题、正文等信息。
4. 创建一个Transport对象,连接到邮件服务器并进行身份验证。
5. 发送邮件。
下面是一个简单的Java代码示例,演示如何使用POP3协议发送邮件:
```java
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class SendEmail {
public static void main(String[] args) {
// 收件人电子邮箱
String to = "receiver@example.com";
// 发件人电子邮箱
String from = "sender@example.com";
// 指定发送邮件的主机为 localhost
String host = "localhost";
// 获取系统属性
Properties properties = System.getProperties();
// 设置邮件服务器
properties.setProperty("mail.smtp.host", host);
// 获取默认的 Session 对象。
Session session = Session.getDefaultInstance(properties);
try {
// 创建默认的 MimeMessage 对象。
MimeMessage message = new MimeMessage(session);
// Set From: 头部头字段
message.setFrom(new InternetAddress(from));
// Set To: 头部头字段
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
// Set Subject: 头部头字段
message.setSubject("This is the Subject Line!");
// 设置消息体
message.setText("This is actual message");
// 发送消息
Transport.send(message);
System.out.println("Sent message successfully....");
} catch (MessagingException mex) {
mex.printStackTrace();
}
}
}
```
阅读全文