要使用Java发送HTML邮件,可以使用JavaMail API,以下是详细步骤:
1、添加JavaMail依赖
在项目的pom.xml文件中添加JavaMail的依赖:
<dependency> <groupId>com.sun.mail</groupId> <artifactId>javax.mail</artifactId> <version>1.6.2</version> </dependency>
2、编写Java代码
创建一个Java类,如HtmlEmailSender.java
,并编写以下代码:
import java.util.Properties; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.AddressException; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class HtmlEmailSender { public static void main(String[] args) { // 设置邮件服务器属性 Properties properties = new Properties(); properties.put("mail.smtp.host", "smtp.example.com"); properties.put("mail.smtp.port", "587"); properties.put("mail.smtp.auth", "true"); properties.put("mail.smtp.starttls.enable", "true"); // 创建邮件会话 Session session = Session.getInstance(properties, new javax.mail.Authenticator() { protected javax.mail.PasswordAuthentication getPasswordAuthentication() { return new javax.mail.PasswordAuthentication("your_email@example.com", "your_password"); } }); try { // 创建邮件消息 MimeMessage message = new MimeMessage(session); message.setFrom(new InternetAddress("your_email@example.com")); message.addRecipient(Message.RecipientType.TO, new InternetAddress("recipient_email@example.com")); message.setSubject("HTML邮件示例"); // 设置邮件内容为HTML格式 message.setContent("<h1>欢迎使用Java发送HTML邮件!</h1><table border='1'><tr><th>姓名</th><th>年龄</th></tr><tr><td>张三</td><td>30</td></tr></table>", "text/html;charset=UTF8"); // 发送邮件 Transport.send(message); System.out.println("邮件已成功发送!"); } catch (AddressException e) { e.printStackTrace(); } catch (MessagingException e) { e.printStackTrace(); } } }
注意替换your_email@example.com
、your_password
和recipient_email@example.com
为实际的发件人邮箱、密码和收件人邮箱。
3、运行Java程序
运行HtmlEmailSender.java
,如果一切正常,收件人将收到一封包含HTML内容的邮件。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/417066.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复