How can I customize the sender for password reset mail sent by Meteor Accounts?
The sender used by Meteor Accounts when sending password reset mail is controlled by the Accounts.emailTemplates.sender
attribute. Just assign your desired value to it on server startup, for example:
Meteor.startup(function () {
Accounts.emailTemplates.from = "Admin <[email protected]>"
})