SendGrid未将文本发送到换行符
我将SendGrid API与NodeJS一起使用,由于某些原因,电子邮件正在发送,但没有添加新行。我用过了,而且 但运气不佳。知道出了什么问题吗?
以下是我使用的代码
var email = {
to: 'test@gmail.com',
from: 'hello@test.com',
subject: 'Membership',
text: 'Please view in html',
html: 'Hello there!,</br>
' +
'Please click on the following link, or paste this into your browser to complete the process:
' +
'Welcome and thanks for joining.
' +
'</br>Your details we have are
' +
'</br> Name: ' + user + '
' + '</br> Telephone number: ' + number + '</br> email: ' + email + '</br>'
};
解决方案
我假定您的";普通内容&设置已在SendGrid帐户中关闭。 要使html标记起作用,您需要使用三花括号
{{{TEMPLATE_VARIABLE}}}
它会将html标记解析为html而不是纯文本。如果您要使用双花括号
{{TEMPLATE_VARIABLE}}
它将把任何html标记仅视为纯文本。
相关文章