The Mailer Servlet provides a simple REST based service that can be used to send MIME e-mails, including embedded experience MIME parts.
In order to run this, copy com.ibm.lotuslabs.mailer_1.0.0.jar into \domino\workspace\applications\eclipse\plugins and restart the server.
The Servlet only supports POST. The POST body must be JSON that follows the following data format.
{
"To": (Required) {A comma separated list of e-mails or canonical names that will appear in the "to" field of the e-mail.},
"CC": (Optional) {A comma separated list of e-mails or canonical names that will appear in the "cc" field of the e-mail.},
"BCC": (Optional) {A comma separated list of e-mails or canonical names that will appear in the "bcc" field of the e-mail.},
"Subject": (Optional) {The subject of the e-mail.},
"Principal": (Optional) {From whom the e-mail will appear to be sent. If not provided the current user will be used or "Anonymous" if no current authenticated user exists.},
"Body":{
"text_plain": (Optional) {The contents of the text/plain MIME part.},
"text_html": (Optional) {The contents of the text/html MIME part.},
"embed_json":