How can I insert line breaks to my e-mail message?

How can I insert line breaks to my e-mail message?

A message could be sent as "Plain Text" or "HTML".  Use <br> tag if the content is HTML and \n if the content type is "plain text".  For example, 

on  add
{
on success
{
sendmail
(
To : zoho.loginuserid
From : zoho.adminuserid
Subject : "To insert line breaks"
Message : "Dear Customer, "+ "<br>Your order has been processed"
)
}
}

    • Related Articles

    • Email subject line

      Email Subject line Personalize your subject -- the easiest shortcut to grab your subscribers' attention when they see the email in their inbox. Our easy-to-use merge tags help tailoring the subject to the audience. Using Emoji in email subject line ...
    • 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 : ...
    • 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 ...
    • Managing Mail Merge Templates

      Mail merge is a function that helps you to simplify repetitive tasks to create personalized documents (Forms, Letters, Address Labels, Envelopes, etc.). You can create a mail merge template that would contain the variables (merge fields) in it. Using ...
    • 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 ...