Zoho FSM | Send Notifications

Send Notifications

Send mail

The sendmail deluge task when executed sends an email to the specified recipients.

Syntax

sendmail
[
from: <from_address>
to: <to_address>
subject: <subject>
message: <message>
]

where,
<from_address> is the value you provide here will be displayed as the sender's email address. You can hardcode the sender's email address. You can specify the system variable zoho.adminuserid.
<to_address> is the email address to which the email will be sent. You can hardcode the recipient's email address. You can specify multiple email addresses separated by commas, or held in a LIST. You can specify system variables zoho.adminuserid and zoho.loginuserid.
<subject> is the Subject of the email.
<message> is the Content of the email.

Example 

  1. sendmail
  2. [
  3. from: zoho.adminuserid
  4. to: "test@gmail.com"
  5. subject: "Test Email"
  6. message: "This is a test email."
  7. ]