Advertisement
Guest User

Untitled

a guest
Oct 4th, 2017
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Meteor.startup(function() {
  2. var smtp = {
  3. username: 'sandboxc6af559021cec66224fdfe.mailgun.org',
  4. password: 'eb74e542fc978b41add68bbd',
  5. server: 'smtp.mailgun.org',
  6. port: 587
  7. }
  8.  
  9. process.env.MAIL_URL = 'smtp://postmaster%40' + encodeURIComponent(smtp.username) + ':' + encodeURIComponent(smtp.password) + '@' + encodeURIComponent(smtp.server) + ':' + smtp.port;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement