根据文档here,我正在尝试设置resetPassword
电子邮件模板的内容,但我不断获得undefined
。
当我检查控制台中的Accounts
对象时,我发现它确实没有emailTemplates
属性。
代码:
Accounts.emailTemplates.resetPassword.text = function(user, url) {
url = url.replace('#/', '');
return "Click this link to reset your password: " + url;
}
错误:
Uncaught TypeError: Cannot read property 'resetPassword' of undefined
答案 0 :(得分:11)
我最终把代码放在server
目录中,然后它完美无缺地工作。
令我感到困惑的是,文档声明此属性将被使用Anywhere
...