sendMail
sendMail(mailServerAddress: string
, from: string
, to: string
| string[]
, title: string
, body: string
, callback: Function
, options: ): void
Send e-mail using specified e-mail server.
Parameters
mailServerAddress:
string
Address of mail server to use
from:
string
From address of e-mail message
to:
string
To address or list of those
title:
string
Message title
body:
string
Message body
callback:
Function
Function to be called on completion
options:
OptionalAdvanced settings
Returns
type:
void