gpt4 book ai didi

ruby-on-rails - ActionMailer Rails : Not able to send emails

转载 作者:行者123 更新时间:2023-12-04 05:34:51 24 4
gpt4 key购买 nike

我的 environment/development.rb 中有以下代码

 config.action_mailer.raise_delivery_errors = true;
config.action_mailer.delivery_method = :smtp;
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:user_name => "my_id@gmail.com",
:password => "secret",
:authentication => :plain,
:enable_starttls_auto => true,
:domain => "localhost",
}

正在通过从一个调用邮件程序模型生成一封电子邮件
我的 Controller 。但是,我无法发送或接收任何
gmail 上的电子邮件。

我在 ruby​​ 1.8.7,rails 2.3.5。
没有异常(exception),只是没有交换电子邮件
实际邮件服务器之间。

对邮件程序很陌生,对于任何新手问题,我们深表歉意。

类似的查询:
Actionmailer not working in rails 2.3

谢谢

最佳答案

在您的代码上方,您需要将这些行强制用于身份验证:

require 'tlsmail'
Net::SMTP.enable_tls(OpenSSL::SSL::VERIFY_NONE)

您还需要 邮件 gem 。

如果它不起作用,您可以尝试从您的设置中删除域 key 。

关于ruby-on-rails - ActionMailer Rails : Not able to send emails,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5760631/

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