How does the EmailModule.mail() function works?

5
I see that the EmailModule.mail() function in the mx.jar expected 7 arguments. My question is to witch argument can I apply additional header information for sending HTML e-mail?
asked
1 answers
6

Open your Javadoc folder, this folder is located in your project root folder. Open Index.html in a webbrowser. Now you can browse to the EmailModule.mail() method.

There are a few overloaded methods called mail(), you probably won't need the 7 argument one since that one includes sending an attachment.

answered