Can I add headers to an email using the EmailModule.mail() function

1
For sending emails we are using the EmailModule.mail() function within a Java action. We need to add an extra header to the email, does the EmailModule support this?
asked
1 answers
2

No this isn't supported, however sending email isn't that hard to implement manually in a Java action. Have a look at JavaMail or use some other library.

answered