Zoho Deluge:如何插入换行符或在电子邮件中添加新行?

时间:2018-09-03 07:23:30

标签: zoho

我正在尝试使用Zoho自定义功能发送电子邮件。现在需要在我的电子邮件中插入换行符。 我用\n尝试过,但是没用

sendmail
    [
        from: "email@gmail.com"
        to: "email@gmail.com"
        subject: Subject
        message: "Hello, \nThe Name has been updated to the stage. Below is a link to the record for more details:\n link \nRegards, \nBRKTHRU"
    ]

谢谢

2 个答案:

答案 0 :(得分:1)

得到解决方案

消息可以作为“纯文本”或“ HTML”发送。如果内容为HTML,则使用
标记;如果内容类型为“纯文本”,则使用\ n。例如

sendmail
[
    To       :  zoho.loginuserid 
    From     :  zoho.adminuserid 
    Subject  :  "To insert line breaks" 
    Message  :  "Dear Customer, "+ "<br>Your order has been processed"
]

Zoho help link得到答案

答案 1 :(得分:0)

你必须使用 HTML。尝试插入一些 <br><br> 而不是 \n