How can I send only specific field values in the e-mail message?

How can I send only specific field values in the e-mail message?

To send only specific field values in your e-mail, use the input.<field_name> variable in  the send mail task. For example, you have 3 fields (Name, Age, Email), and in the email message you want to send only the Name and E-mail field values. The format for the same will be, 

             sendmail
(
To : zoho.loginuserid
From : zoho.adminuserid
Subject : "Order Confirmation"
Message : "Name : "+input.Name+"<br>" +"Email : "+input.Email
)
Refer the help topic Set Email Notifications to configure the above from the GUI.

    • Related Articles

    • How can I send a URL in my e-mail message?

      To send a link/url in your e-mail message, the actual link must be specified within the <a href> html tag and the actual link must be within single quotes, as shown in the sample below: on add { on success { sendmail ( To : zoho.loginuserid From : ...
    • Custom Function: Computing_Field_Values

      This custom function can be used to add two values and save the return value in a custom field.  The sum will be dynamically updated in the custom field after this function is executed.  Business Scenario Helen is the head of Procurement ...
    • How can I send the URL of the uploaded file, in my e-mail message?

      et the url/link of the uploaded file by specifying the url within the <a href> tag, in the following format.  For example, in the sample message given below, File_Upload is the name of the file upload field, test is the application name ...
    • How can I send mail when a field value is modified?

      Assume you have a Feedback form with a Status field with values "Open" and "Closed". When a feedback/issue is solved, the status is set to "Closed" by the team member and a e-mail is sent to the person who had raised the issue. To do this, we have to ...
    • How can I send email message with Form Data?

      You can configure to send e-mail message with form data either from the Form GUI or by adding Deluge Script with the Send mail task.  1. To configure email notifications from the Form GUI, refer the topic, Configure email notifications from GUI.  The ...