使用 nodemailer 发送电子邮件链接不起作用

Sending links to email with nodemailer not working

我正在开发一个应用程序,我正在使用 nodemailer 发送恢复电子邮件供用户重置他们的密码,我正在尝试向一个页面发送 link允许他们更改密码。我将以下内容用作电子邮件正文

html: '<p>Click <a href="localhost:3000/sessions/recover/' + recovery_token + '">here</a> to reset your password</p>'

但是当我测试它时,我只收到一封包含文本的电子邮件,没有 link,使用 isspector 显示 <a>here</a>,所以它发送的是 a 标签,只是没有发送 href .

我在输入这个问题后找到了答案,所以我想我会只回答我自己的问题以防其他人遇到问题。当我将电子邮件正文更改为

时,我需要在电子邮件中包含 http://
html: '<p>Click <a href="http://localhost:3000/sessions/recover/' + recovery_token + '">here</a> to reset your password</p>'

它开始工作了。