I am using Java Mail API to automate an email. My email body has rich text like tables and colors. Any one has an idea of how to write such a text as email body.
Thanks in advance!
|
|
You can send emails with body as HTML content using Spring Mailing functionality which is just a wrapper around the java mail. Just refer the below code to send HTML content as the mail body, you can include html tags like .. etc in the mail content which will be rendered as a Table when the mail is read. import javax.mail.internet.MimeMessage import org.springframework.mail.javamail.MimeMessageHelper; MimeMessage message = mailSender.createMimeMessage(); MimeMessageHelper helper = new MimeMessageHelper (message, true, "UTF-8"); helper.setText({String content of the email, which includes HTML tags}, true); |
|||
|
|