如何自定义流星帐户电子邮件模板?在Meteor初创公司,我有:
Accounts.config({
sendVerificationEmail: true
});
有没有办法配置电子邮件模板?例如,电子邮件中有一个验证链接,我必须将链接更改为按钮。
答案 0 :(得分:9)
您可以使用以下功能自定义verifyEmail
组件:
Accounts.emailTemplates.verifyEmail.text = function(user, url) {
return 'Your custom text, URL:' + url;
};
由于您想要更改链接,您可能需要使用:
Accounts.emailTemplates.verifyEmail.html = function(user, url) {
/* Return your HTML code here: */
return '<h1>Thank you for your registration.</h1><br/><a href="' + url + '">Verify eMail</a>';
};
详细了解 Accounts.emailTemplates
。
答案 1 :(得分:0)
只是为了更多地了解这一点。
Accounts.emailTemplates.verifyEmail = {
subject() {
return "Activate your account now!";
},
text(user, url) {
return 'Hey ' + user.profile.name
+ '! Verify your e-mail by following the link below:\n\n'
+ url;
}
};
基于docs。
中的示例