The default mail settings of the server will be used.
Send Mail
POST /api/mail/send
Body:
Field | Value | Type |
---|---|---|
to | Mail destination (comma separated for multiple) | string |
from | Mail sender display name | string |
subject | Subject of the mail | string |
content | Content of the mail | string |
html (optional) | Determines if the content should be send as HTML rather than plain text | boolean |
Example:
{
"to":"recipient@company.com",
"from":"no-reply@company.com",
"subject":"Test eMail",
"content":"Dear recipient \n This is a test message"
}
Last updated on