You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Mandrill.config() function you're setting process.env.MAIL_URL. In previous meteor versions the MAIL_URL was unpacked and the arguments passed as an object to the SMTP transport. But now that's changed, and so this behaviour produces a MAIL_URL like smtp://[email protected]:pass@host:port which breaks Email.send().
The text was updated successfully, but these errors were encountered:
In the
Mandrill.config()
function you're settingprocess.env.MAIL_URL
. In previous meteor versions theMAIL_URL
was unpacked and the arguments passed as an object to the SMTP transport. But now that's changed, and so this behaviour produces aMAIL_URL
likesmtp://[email protected]:pass@host:port
which breaksEmail.send()
.The text was updated successfully, but these errors were encountered: