I'm currently using JavaMail and Spring to send email in HTML. As it happens, the HTML is generated by some Velocity templates I have, and the sending code is roughly as follows:
MimeMessagePreparator preparator = new MimeMessagePreparator() {
@Override public void prepare(MimeMessage mimeMessage) throws Exception {
MimeMessageHelper message = new MimeMessageHelper(mimeMessage, "UTF-8");
message.setSubject(msgInfo.getSubject());
message.setFrom(msgInfo.getFrom());
message.setReplyTo(msgInfo.getFrom());
message.setTo(address);
message.setText(someText, true);
}
}
mailSender.send(preparator);
This works just fine, but it sends the mail with only a single part as text/html
. What I need is to send it in multipart alternative with a plain text part. Is there a way, using Spring and JavaMail, to do this in an automatic way?
In a former life when I programmed with Visual Basic and CDONTS this was built-in, but I can't seem to find a simple way to do it with Java. It's not terribly important that the plain text version look good, it just has to exist. What I'm trying to avoid is having to maintain a whole second set of Velocity templates just for this.
In order to send both Text and HTML parts, you need to use a different setText()
method:
public void setText(String plainText, String htmlText)
If you are setting the plain text to your HTML content, you may need to parse the HTML to remove the HTML tags.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With