Super easy to do this with mandrill package in atmosphere
meteor add timmyg13:mandrill
Then just configure it on the server side:
# in server code Meteor.startup(function() { Meteor.Mandrill.config({ username: "YOUR_MANDRILL_USERNAME", key: "YOUR_MANDRILL_API_KEY" }); });
And you are tuned!
As he does this, he installs your smtp-url on the smtp mandrill server, so everything that uses the Meteor email package will work (for example, password-password)
source share