gpt4 book ai didi

ruby-on-rails - rails 3 : SMTP Settings for Hotmail/Live Hosted Email

转载 作者:行者123 更新时间:2023-12-04 12:55:19 25 4
gpt4 key购买 nike

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

我已经输入了正确的 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: nodename 或 servname 提供,或未知

最佳答案

这是我的配置:

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' }

关于ruby-on-rails - rails 3 : SMTP Settings for Hotmail/Live Hosted Email,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13810580/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com