我正在尝试使用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"
]感谢‘s
发布于 2018-09-03 17:02:31
得到解决方案了
消息可以以“纯文本”或"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获得答复
发布于 2021-06-23 03:19:00
你必须使用HTML。尝试插入一些<br><br>,而不是\n
https://stackoverflow.com/questions/52144934
复制相似问题