Java实现网易企业邮箱stmp 消息发送
时间: 2024-01-27 22:03:33 浏览: 168
stmp.class.zip_ stmp.class.p_php邮箱_stmp php
要使用Java实现网易企业邮箱SMTP消息发送,需要使用JavaMail API。以下是一个简单的示例代码:
```java
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class EmailSender {
public static void main(String[] args) {
final String username = "your_email@example.com";
final String password = "your_email_password";
String fromEmail = "your_email@example.com";
String toEmail = "recipient@example.com";
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.qiye.163.com");
props.put("mail.smtp.port", "25");
props.put("mail.smtp.auth", "true");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(fromEmail));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(toEmail));
message.setSubject("Test Email");
message.setText("Hello, this is a test email from Java.");
Transport.send(message);
System.out.println("Email Sent Successfully");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
}
```
在上面的代码中,你需要把`your_email@example.com`和`your_email_password`替换为你的网易企业邮箱地址和密码,`recipient@example.com`替换为你要发送邮件的收件人地址。你还需要设置SMTP服务器的主机名和端口号。在这个例子中,我们使用网易企业邮箱的SMTP服务器。
在运行代码之前,请确保你已经包含了JavaMail API。如果你使用Maven,则可以添加以下依赖项:
```xml
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.7</version>
</dependency>
```
这个例子只是一个简单的入门示例。你可以使用JavaMail API来发送HTML邮件,添加附件,设置抄送和密送等。
阅读全文