Abhijit
Abhijit

Reputation:

GAE For Java: Mail API

I have developed an application that sends out mails and SMS. My question is How to send well formatted mails using Google App Engine for Java, Please suggest me anyone.

Thanks, Abhijit

Upvotes: 3

Views: 1349

Answers (2)

dfa
dfa

Reputation: 116334

in addition to duffymo's answer you could try freemarker or StringTemplate that are other well supported and well documented Java Templating Libraries.

Upvotes: 2

duffymo
duffymo

Reputation: 308763

You send the e-mails using GAE mail service, of course.

If you're asking about formatting, one way to do it is with a Velocity template. This will give you a nice mail merge feature as well: populate the template with values from a database and send out your messages.

Upvotes: 6

Related Questions