标签: javascript meteor meteor-accounts
如何为Meteor Accounts发送的密码重置邮件自定义发件人?
答案 0 :(得分:1)
Meteor Accounts在发送密码重置邮件时使用的发件人由Accounts.emailTemplates.sender属性控制。只需在服务器启动时为其分配所需的值,例如:
Accounts.emailTemplates.sender
Meteor.startup(function () { Accounts.emailTemplates.from = "Admin <no-reply@example.com>" })