Nodemailer 在文本中嵌入 link
Node mailer embed link in text
我正在尝试在节点 js 中嵌入 link 内部文本,如下所示
"You can <a href='http://"+ config.clientHost + "/#/rating/" + data._id + "'> click this link</a> or reply to this email using the format below: \n"
但在邮件中显示为
如何在使用 node mailer 发送电子邮件时在 node js 中将这个 url 转换为 'click this link'。
以 html 而非文本形式发送您的正文。只有当您在 'html' 中发送 html 标签时,它才会转换,否则它将作为文本发送。
我正在尝试在节点 js 中嵌入 link 内部文本,如下所示
"You can <a href='http://"+ config.clientHost + "/#/rating/" + data._id + "'> click this link</a> or reply to this email using the format below: \n"
但在邮件中显示为
如何在使用 node mailer 发送电子邮件时在 node js 中将这个 url 转换为 'click this link'。
以 html 而非文本形式发送您的正文。只有当您在 'html' 中发送 html 标签时,它才会转换,否则它将作为文本发送。