7

我在正确设置我的网络应用程序以使用 Windows Live 托管电子邮件而不是普通的 Google Apps 电子邮件时遇到问题。这是因为谷歌正在降低此类服务的费用。

我输入了正确的 config.action_mailer.smtp_settings,但由于某种原因,我无法正确发送电子邮件通知。我在下面的配置,如果我将配置与另一封 Google Apps 配置设置电子邮件交换,它就可以正常工作。我错过了什么吗?

config.action_mailer.smtp_settings = {
:enable_starttls_auto => true,
:address              => "smtp.live.com",
:port                 => "587",
:domain               => "mail.live.com",
:user_name            => "###########.net",
:password             => "###########",
:authentication       => :plain
}

这是我收到的错误。getaddrinfo:提供节点名或服务名,或未知

4

1 回答 1

1

这是我的配置:

config.action_mailer.smtp_settings = {
  :address              => "smtp.live.com",
  :port                 => 587,
  :domain               => 'example.com',
  :user_name            => 'XXXXXXXXX',
  :password             => 'XXXXXXXXX',
  :authentication       => 'plain',
  :enable_starttls_auto => true  }

唯一的区别是身份验证。

还要记住这一行

config.action_mailer.default_url_options = { :host => 'localhost:3000' }
于 2012-12-10T23:06:23.793 回答