如何将Image放入mail的header(Spring Boot)?
How to put Image in mail's header(Spring Boot)?
我正在开发一个应用程序,我需要在 header 和邮件页脚中设置图像。我看到了 setHeader(String header-name, String header_value)
方法,但是当我在其中输入图像路径时,我什么也没得到。
这是我的代码:
public static void send(String host, String port,
final String userName, final String password, String toAddress,
String subject, String htmlBody,
Map<String, String> mapInlineImages)
throws AddressException, MessagingException {
// sets SMTP server properties
Properties properties = new Properties();
properties.put("mail.smtp.host", host);
properties.put("mail.smtp.port", port);
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.starttls.enable", "true");
properties.put("mail.user", userName);
properties.put("mail.password", password);
// creates a new session with an authenticator
Authenticator auth = new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(userName, password);
}
};
Session session = Session.getInstance(properties, auth);
// creates a new e-mail message
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(userName));
InternetAddress[] toAddresses = { new InternetAddress(toAddress) };
msg.setRecipients(Message.RecipientType.TO, toAddresses);
msg.setSubject(subject);
msg.setSentDate(new Date());
msg.setHeader("image1", "D:\broki\src\main\resources\imageHeader.jpg");
// creates message part
MimeBodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(htmlBody, "text/html");
// creates multi-part
Multipart multipart = new MimeMultipart();
multipart.addBodyPart(messageBodyPart);
// adds inline image attachments
if (mapInlineImages != null && mapInlineImages.size() > 0) {
Set<String> setImageID = mapInlineImages.keySet();
for (String contentId : setImageID) {
MimeBodyPart imagePart = new MimeBodyPart();
imagePart.setHeader("Content-ID", "<" + contentId + ">");
imagePart.setDisposition(MimeBodyPart.INLINE);
String imageFilePath = mapInlineImages.get(contentId);
try {
imagePart.attachFile(imageFilePath);
} catch (IOException ex) {
ex.printStackTrace();
}
multipart.addBodyPart(imagePart);
}
}
msg.setContent(multipart);
Transport.send(msg);
}
}
如你所见部分
msg.setHeader("image1", "D:\broki\src\main\resources\imageHeader.jpg")
我将一些键和值放在 header 中,它们是我要设置的图像的路径。但是没有任何反应。有人可以帮助我吗?
单词 "header" in a MIME message 指的是邮件中具有“键:值”字段的部分。此部分称为“header”,因为它在消息的“body”内容之前传输。 header 用于诸如“日期”、“主题”、“Content-Type”之类的内容。
单词“header”不是指在屏幕上或打印时可见的 graphical header。要添加这种类型的 header,您必须修改消息的内容。在您的程序中,它存储在 htmlBody
变量中。
我认为您不能简单地修改 htmlBody
以向其添加 header,而不知道它的结构。在一般情况下,页面 header 必须从一开始就合并到 HTML 消息设计中。
我正在开发一个应用程序,我需要在 header 和邮件页脚中设置图像。我看到了 setHeader(String header-name, String header_value)
方法,但是当我在其中输入图像路径时,我什么也没得到。
这是我的代码:
public static void send(String host, String port,
final String userName, final String password, String toAddress,
String subject, String htmlBody,
Map<String, String> mapInlineImages)
throws AddressException, MessagingException {
// sets SMTP server properties
Properties properties = new Properties();
properties.put("mail.smtp.host", host);
properties.put("mail.smtp.port", port);
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.starttls.enable", "true");
properties.put("mail.user", userName);
properties.put("mail.password", password);
// creates a new session with an authenticator
Authenticator auth = new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(userName, password);
}
};
Session session = Session.getInstance(properties, auth);
// creates a new e-mail message
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(userName));
InternetAddress[] toAddresses = { new InternetAddress(toAddress) };
msg.setRecipients(Message.RecipientType.TO, toAddresses);
msg.setSubject(subject);
msg.setSentDate(new Date());
msg.setHeader("image1", "D:\broki\src\main\resources\imageHeader.jpg");
// creates message part
MimeBodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(htmlBody, "text/html");
// creates multi-part
Multipart multipart = new MimeMultipart();
multipart.addBodyPart(messageBodyPart);
// adds inline image attachments
if (mapInlineImages != null && mapInlineImages.size() > 0) {
Set<String> setImageID = mapInlineImages.keySet();
for (String contentId : setImageID) {
MimeBodyPart imagePart = new MimeBodyPart();
imagePart.setHeader("Content-ID", "<" + contentId + ">");
imagePart.setDisposition(MimeBodyPart.INLINE);
String imageFilePath = mapInlineImages.get(contentId);
try {
imagePart.attachFile(imageFilePath);
} catch (IOException ex) {
ex.printStackTrace();
}
multipart.addBodyPart(imagePart);
}
}
msg.setContent(multipart);
Transport.send(msg);
}
}
如你所见部分
msg.setHeader("image1", "D:\broki\src\main\resources\imageHeader.jpg")
我将一些键和值放在 header 中,它们是我要设置的图像的路径。但是没有任何反应。有人可以帮助我吗?
单词 "header" in a MIME message 指的是邮件中具有“键:值”字段的部分。此部分称为“header”,因为它在消息的“body”内容之前传输。 header 用于诸如“日期”、“主题”、“Content-Type”之类的内容。
单词“header”不是指在屏幕上或打印时可见的 graphical header。要添加这种类型的 header,您必须修改消息的内容。在您的程序中,它存储在 htmlBody
变量中。
我认为您不能简单地修改 htmlBody
以向其添加 header,而不知道它的结构。在一般情况下,页面 header 必须从一开始就合并到 HTML 消息设计中。