java发送一个html邮件,JavaMail API 发送一个HTML电子邮件

全屏

下面是一个例子,从你的机器发送HTML格式电子邮件。这里通过使用JangoSMPT服务器的邮件发送到我们的目标电子邮件地址。

这个例子非常相似,发送简单的电子邮件,除非,这里我们使用的是使用setContent()方法来设置内容的第二个参数为“"text/html"指定的HTML内容被包含在消息中。通过这个例子,你可以发送喜欢HTML内容。

发送包含HTML内容的电子邮件,遵循的步骤是:获得一个Session

创建一个默认的MimeMessage对象,并设置发件人,收件人,主题(From, To, Subject)在消息中。

设置使用使用setContent(实际的消息),如下方法:message.setContent("

This is actual message embedded in

HTML tags", "text/html");

发送使用传输对象的消息。

创建Java类

创建一个Java类文件SendHTMLEmail,是其内容如下:package cn.sxt;

import java.util.Properties;

import javax.mail.Message;

import javax.mail.MessagingException;

import javax.mail.PasswordAuthentication;

import javax.mail.Session;

import javax.mail.Transport;

import javax.mail.internet.InternetAddress;

import javax.mail.internet.MimeMessage;

public class SendHTMLEmail {

public static void main(String[] args) {

// Recipient's email ID needs to be mentioned.

String to = "destinationemail@gmail.com";

// Sender's email ID needs to be mentioned

String from = "fromemail@gmail.com";

final String username = "manishaspatil";//change accordingly

final String password = "******";//change accordingly

// Assuming you are sending email through relay.jangosmtp.net

String host = "relay.jangosmtp.net";

Properties props = new Properties();

props.put("mail.smtp.auth", "true");

props.put("mail.smtp.starttls.enable", "true");

props.put("mail.smtp.host", host);

props.put("mail.smtp.port", "25");

// Get the Session object.

Session session = Session.getInstance(props,

new javax.mail.Authenticator() {

protected PasswordAuthentication getPasswordAuthentication() {

return new PasswordAuthentication(username, password);

}

});

try {

// Create a default MimeMessage object.

Message message = new MimeMessage(session);

// Set From: header field of the header.

message.setFrom(new InternetAddress(from));

// Set To: header field of the header.

message.setRecipients(Message.RecipientType.TO,

InternetAddress.parse(to));

// Set Subject: header field

message.setSubject("Testing Subject");

// Send the actual HTML message, as big as you like

message.setContent(

"

This is actual message embedded in HTML tags

",

"text/html");

// Send message

Transport.send(message);

System.out.println("Sent message successfully....");

} catch (MessagingException e) {

e.printStackTrace();

throw new RuntimeException(e);

}

}

}

由于我们使用的是由主机提供商JangoSMTP提供 SMTP服务器,我们需要验证用户名和密码。javax.mail.PasswordAuthentication类用于验证的密码。

编译并运行

Now that our class is ready, let us compile the above class. I've saved the class SendHTMLEmail.java to directory : /home/manisha/JavaMailAPIExercise. We would need the jars javax.mail.jar andactivation.jar in the classpath. Execute the command below to compile the class (both the jars are placed in /home/manisha/ directory) from command prompt:javac -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendHTMLEmail.java

Now that the class is compiled, execute the below command to run:java -cp /home/manisha/activation.jar:/home/manisha/javax.mail.jar: SendHTMLEmail

Verify Output

You should see the following message on the command console:Sent message successfully....

As I'm sending an email to my gmail address through JangoSMTP, the following mail would be received in my gmail account inbox:

378ebd6102c71984895854e70083d9c3.png

分享到:

0评论

14487a65ea137d8f9ac97cdce44a0324.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: 在 Java发送邮件需要使用 JavaMail 库。下面是一个简单的例子,它使用 Gmail 的 SMTP 服务器发送一封带有主题、正文和附件的邮件: ```java import java.util.Properties; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.PasswordAuthentication; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class SendEmail { public static void main(String[] args) { // 设置属性 Properties props = new Properties(); props.put("mail.smtp.auth", "true"); props.put("mail.smtp.starttls.enable", "true"); props.put("mail.smtp.host", "smtp.gmail.com"); props.put("mail.smtp.port", "587"); // 获取会话 Session session = Session.getInstance(props, new javax.mail.Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("username@gmail.com", "password"); } }); try { // 创建邮件 Message message = new MimeMessage(session); message.setFrom(new InternetAddress("from@gmail.com")); message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("to@gmail.com")); message.setSubject("主题"); message.setText("正文"); // 发送邮件 Transport.send(message); System.out.println("邮件发送"); } catch (MessagingException e) { throw new RuntimeException(e); } } } ``` 注意: - 你需要使用自己的电子邮件地址和密码替换 "username@gmail.com" 和 "password"。 - 你需要为 "from@gmail.com" 和 "to@gmail.com" 指定自己的电子邮件地址。 - 在运行这段代码之前,你需要下载并安装 JavaMail 库。你可以在这里找到下载链接: ### 回答2: 以下是一个使用Java编写发送邮件的示例代码: ```java import java.util.Properties; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.PasswordAuthentication; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class SendEmail { public static void main(String[] args) { // 配置发送邮件的SMTP服务器信息 Properties properties = new Properties(); properties.put("mail.smtp.auth", "true"); properties.put("mail.smtp.starttls.enable", "true"); properties.put("mail.smtp.host", "smtp.example.com"); // 替换为你的SMTP服务器地址 properties.put("mail.smtp.port","587"); // 替换为你的SMTP服务器端口号 // 创建一个Session对象来与SMTP服务器进行通信 Session session = Session.getInstance(properties, new javax.mail.Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("your_email@example.com", "your_password"); // 替换为你的邮箱地址和密码 } }); try { // 创建一个Message对象 Message message = new MimeMessage(session); // 设置邮件发送方 message.setFrom(new InternetAddress("your_email@example.com")); // 替换为你的邮箱地址 // 设置邮件的接收方 message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("recipient@example.com")); // 替换为收件人的邮箱地址 // 设置邮件的主题 message.setSubject("这是一封测试邮件"); // 设置邮件的正文内容 message.setText("你好,这是一封测试邮件。"); // 发送邮件 Transport.send(message); System.out.println("邮件已成功发送。"); } catch (MessagingException e) { e.printStackTrace(); } } } ``` 需要注意的是,代码中的邮箱地址、密码以及SMTP服务器相关信息需要根据实际情况进行替换。此代码使用了Java Mail API发送邮件,并通过SMTP服务器进行通信。 ### 回答3: Java提供了使用JavaMail库来发送邮件的功能。下面是一个简单的例子。 首先,我们需要导入JavaMail所需的依赖库。可以在项目的pom.xml文件中添加如下依赖: ```xml <dependency> <groupId>javax.mail</groupId> <artifactId>javax.mail-api</artifactId> <version>1.6.2</version> </dependency> <dependency> <groupId>com.sun.mail</groupId> <artifactId>javax.mail</artifactId> <version>1.6.2</version> </dependency> ``` 然后我们可以编写发送邮件的代码: ```java import javax.mail.*; import javax.mail.internet.*; import java.util.Properties; public class EmailSender { public static void main(String[] args) { // 收件人邮箱地址 String to = "recipient@example.com"; // 发件人邮箱地址 String from = "sender@example.com"; // 邮件主题 String subject = "Test Email"; // 邮件内容 String content = "This is a test email."; // 设置邮箱服务器的属性 Properties properties = new Properties(); properties.setProperty("mail.smtp.host", "smtp.example.com"); properties.setProperty("mail.smtp.port", "587"); properties.setProperty("mail.smtp.auth", "true"); // 创建一个邮件会话 Session session = Session.getDefaultInstance(properties, new Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("username", "password"); } }); try { // 创建邮件消息 Message message = new MimeMessage(session); // 设置发件人 message.setFrom(new InternetAddress(from)); // 设置收件人 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // 设置主题 message.setSubject(subject); // 设置内容 message.setText(content); // 发送邮件 Transport.send(message); System.out.println("Email Sent Successfully"); } catch (Exception e) { e.printStackTrace(); } } } ``` 其中,需要替换以下部分: - `to`:收件人的邮箱地址 - `from`:发件人的邮箱地址 - `smtp.example.com`:邮箱服务器的SMTP地址 - `username`:发件人的邮箱用户名 - `password`:发件人的邮箱密码 以上代码可以通过JavaMail发送简单的文本邮件。如果需要发送带附件的邮件HTML邮件等,还需要进一步对`message`进行设置。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值