如何使用 JavaMail 发送带有附件的 html 电子邮件
Posted
技术标签:
【中文标题】如何使用 JavaMail 发送带有附件的 html 电子邮件【英文标题】:how to send a html email with attached file using JavaMail 【发布时间】:2015-10-27 20:11:37 【问题描述】:以下 Java 代码用于将文件附加到 html 电子邮件并发送。我想用这封 html 电子邮件发送附件。任何建议将不胜感激。
public void sendEmail(final String userName, final String password, final String host, final String html, final List<String> emails, String subject, String file) throws MessagingException
System.out.println("User Name: " + userName);
System.out.println("Password: " + password);
System.out.println("Host: " + host);
//Get the session object
Properties props = new Properties();
props.put("mail.smtp.host", host);
props.put("mail.smtp.auth", "true");
Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator()
@Override
protected PasswordAuthentication getPasswordAuthentication()
return new PasswordAuthentication(userName, password);
);
if (!emails.isEmpty())
//Compose the message
InternetAddress[] address = new InternetAddress[emails.size()];
for (int i = 0; i < emails.size(); i++)
address[i] = new InternetAddress(emails.get(i));
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(userName));
message.setRecipients(Message.RecipientType.TO, address);
message.setSubject(subject);
MimeBodyPart messageBodyPart = new MimeBodyPart();
Multipart multipart = new MimeMultipart();
messageBodyPart = new MimeBodyPart();
String fileName = "attachmentName";
DataSource source = new FileDataSource(file);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(fileName);
multipart.addBodyPart(messageBodyPart);
message.setContent(html, "text/html; charset=utf-8");
message.setContent(multipart);
//send the message
Transport.send(message);
System.out.println("message sent successfully...");
else
System.out.println("No Recieptions");
这给我带来的只是附件。但我想发送带有此附件的 html 电子邮件。
【问题讨论】:
***.com/questions/5223079/how-to-send-html-email、***.com/questions/14744197/… 和许多其他人的副本。 @JozefChocholacek ;你疯了吗 ?您是否阅读了以上链接和主题 @JozefChocholacek;先仔细阅读论据 【参考方案1】:创建带有 HTML 正文和附件的邮件,实际上意味着创建内容为“多部分实体”的邮件,其中包含两个部分,其中一个是 HTML 内容,第二个是附件。
这与您当前的代码不符:
Multipart multipart = new MimeMultipart(); // creating a multipart is OK
// Creating the first body part of the multipart, it's OK
messageBodyPart = new MimeBodyPart();
// ... bla bla
// ok, so this body part is the "attachment file"
messageBodyPart.setDataHandler(new DataHandler(source));
// ... bla bla
multipart.addBodyPart(messageBodyPart); // at this point, the multipart contains your file attachment, but only that!
// at this point, you set your mail's body to be the HTML message
message.setContent(html, "text/html; charset=utf-8");
// and then right after that, you **reset** your mail's content to be your multipart, which does not contain the HTML
message.setContent(multipart);
此时,您的电子邮件内容是一个多部分,只有一个部分,即您的附件。
因此,要达到您的预期结果,您应该采取不同的方式:
-
创建一个多部分(如您所做的那样)
创建一个以您的文件附件为内容的部件(就像您所做的那样)
将此第一部分添加到多部分中(就像您所做的那样)
创建第二个
MimeBodyPart
将您的 html 内容添加到第二部分
将此第二部分添加到您的多部分中
将您的电子邮件内容设置为多部分(就像您所做的那样)
大致翻译为:
Multipart multipart = new MimeMultipart(); //1
// Create the attachment part
BodyPart attachmentBodyPart = new MimeBodyPart(); //2
attachmentBodyPart.setDataHandler(new DataHandler(fileDataSource)); //2
attachmentBodyPart.setFileName(file.getName()); // 2
multipart.addBodyPart(attachmentBodyPart); //3
// Create the HTML Part
BodyPart htmlBodyPart = new MimeBodyPart(); //4
htmlBodyPart.setContent(htmlMessageAsString , "text/html"); //5
multipart.addBodyPart(htmlBodyPart); // 6
// Set the Multipart's to be the email's content
message.setContent(multipart); //7
【讨论】:
注意,原代码中还包含几个common JavaMail mistakes。 没有电子邮件正文。我的尸体在附件中。有什么方法可以让 body 包含 html 标签? @Mr.Koçak 有,在注释的第 5 步。如果它没有出现在您的客户端中,我建议您打开并检查发送的邮件是否有任何其他问题,也许还有其他问题问题与一个最小的例子供其他人看。 好的,谢谢。我找到了解决方案。不同之处在于 messagebody.setContent(emailMessage.getText(),"text/html; charset=UTF-8");消息.saveChanges();在添加包含 html 标签的消息正文之后。之后我添加了附件,它起作用了。 确认 @GPI 的代码也适用于我,这确实将 html 字符串htmlMessageAsString
放入邮件正文,并将文档 file
作为附件附加。跨度>
【参考方案2】:
**Send Email using html body and file attachement**
> try
host = localhost;//use your host or pwd if any
Properties props = System.getProperties();
props.put("mail.smtp.host", host);
props.setProperty("mail.smtp.auth", "false");
Session session = Session.getInstance(props, null);
MimeMessage mailer = new MimeMessage(session);
// recipient
mailer.setRecipient(javax.mail.Message.RecipientType.TO, new InternetAddress(toEmail));
// sender
mailer.setFrom(new InternetAddress(fromEmail));
// cc
if (ccEmail != null)
for (int i = 0; i < ccEmail.size(); i++)
String cc = ccEmail.get(i);
mailer.addRecipient(javax.mail.Message.RecipientType.CC, new InternetAddress(cc));
Transport t = session.getTransport("smtp");
t.connect();
mailer.setSubject(subject);
mailer.setFrom(new InternetAddress(fromEmail));
// attachement
Multipart multipart = new MimeMultipart();
BodyPart messageBodyPart = new MimeBodyPart();
BodyPart attachmentBodyPart = new MimeBodyPart();
messageBodyPart.setContent(htmlbody, "text/html"); // 5
multipart.addBodyPart(messageBodyPart);
// file path
File filename = new File(xmlurl);
DataSource source = new FileDataSource(filename);
attachmentBodyPart.setDataHandler(new DataHandler(source));
attachmentBodyPart.setFileName(filename.getName());
multipart.addBodyPart(attachmentBodyPart);
mailer.setContent(multipart);
Transport.send(mailer);
System.out.println("Mail completed");
catch (SendFailedException e) //errr
【讨论】:
以上是关于如何使用 JavaMail 发送带有附件的 html 电子邮件的主要内容,如果未能解决你的问题,请参考以下文章
JavaMail 从字符串发送邮件附件 - 编码 UTF-8