We send mails to registered user from our application using the below mentioned code in Java.
However mail received by them turns out to be very simple and hence we need to edit it.
I need to write the same content to an image background and then transmit this image as an e-mail to the users.
Is there a way out to achieve this purpose.We use SMTP transport to send messages.
Code snippet shows the present way of writing contents to message.
String from = "blah@abc.com";
String to[] = new String[]{variable};
String subject = "Subject";
StringBuffer content = new StringBuffer();
content.append("");
content.append("");
content.append("");
content.append(variable);
Is there a way out to write all the stuff on an pre identified image and then send this image as the body of the email.