Email Context

  • Send emails through your own SMTP provider

  • You can bulk send emails to multiple recipients, platform will take care of the distribution asynchronous

  • Context Variable: email

API Interface

//Send an email to one of more receipents with the provided subject and content
void send(String subject, String content, String... receipents);

//Send an email to a list of receipents with the provided subject and content
void send(String subject, String content, List<String> receipents);

//Send a HTML email to one of more receipents with the provided subject and content
void htmlSend(String subject, String content, String... receipents);

//Send a HTML email to a list of receipents with the provided subject and content
void htmlSend(String subject, String content, List<String> receipents);

//Send an embedded HTML email to a list of receipents with the provided subject and content
void embedHtmlSend(String subject, String content, String dsResolver, List<String> receipents);

//Send an embedded HTML email to one of more receipents with the provided subject and content
void embedHtmlSend(String subject, String content, String dsResolver, String... receipents);

APIs Inherited

Context Base