是否可以在一个 rails 应用程序中配置两个 gmail 服务器?我做了一个网络搜索,并没有想出任何东西。我宁愿不参与使用 postfix 而不是 gmail,除非那是唯一的方法。
在我的 production.rb 文件中:
config.action_mailer.smtp_settings = {
address: 'smtp.gmail.com',
port: 587,
domain: 'domain1.com',
user_name: 'serv@domain1.com',
password: '************',
authentication: 'plain',
enable_starttls_auto: true }
我想在 serv@domain2.com 为我的 gmail 服务器配置第二台服务器。可能吗?如果是,那么如何?