GAE for Java: Mail API

I developed an application that sends letters and SMS. My question is: How to send well-formatted emails using the Google App Engine for Java, please suggest me someone.

Thanks Abhijit

+3
source share
2 answers

You send emails using the GAE email service , of course.

If you're asking about formatting, one way to do this is with Velocity . It will also give you a nice merge function: populate the template with values ​​from the database and send your messages.

+6
source

duffymo freemarker StringTemplate, Java Templating.

+2

Source: https://habr.com/ru/post/1710906/


All Articles