I have webpage html templates that I want to use in my java code for sending html email with Java Mail.
MimeMessage message = new MimeMessage(session);
message.setContent(html, "text/html");
I want to use the method message.setContent(html, "text/html");
I think html has to be a string. How do I get my webpage html templates into a String?