如何在 Meteor 中配置 Accounts.ui 使用的 smtp 端口

How can I configure the smtp port used by Accounts.ui in Meteor

我无法在开发中发送电子邮件,因为 cloud9 阻止了正常的 smtp 端口。我可以在 Meteor 中配置 Accounts.ui 以使用 mailgun 的特殊 smtp 端口吗?

这样一个环境变量就搞定了

MAIL_URL = "smtp://user%40gmail.com:password@smtp.googlemail.com:465"

第一个 @ 必须写成 %40 - 与解析 url 的方式有关