如何解决如何自定义与Meteor Accounts.ui一起发送的url忘记密码
我正在使用 accounts.ui 忘记密码
Accounts.forgotPassword({email: "test@test.com"},function (e,r) {
if (e) {
console.log(e.reason);
} else {
// success
}
});
有人可以告诉我如何简单地更改网址并使用相同的令牌发送令牌
我尝试使用下面的代码,但这没用
main.js(客户端)
Meteor.startup(() => {
Accounts.resetPassword.text = function(user,url) {
url = url.replace('#/','/');
console.log("url ==== ",url)
return `Click this link to reset your password: ${url}`;
}
});
解决方法
在服务器端:
Accounts.emailTemplates.resetPassword.subject = function () {
return "Forgot your password?";
};
Accounts.emailTemplates.resetPassword.text = function (user,url) {
return "Click this link to reset your password:\n\n" + url;
};
阅读:https://docs.meteor.com/api/passwords.html#Accounts-emailTemplates
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。