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
- sendmail
- [
- from: zoho.adminuserid
- to: "test@gmail.com"
- subject: "Test Email"
- message: "This is a test email."
- ]