0

我尝试使用 ruby​​ on rails 将消息发送到邮件,但它没有传递虽然代码中出现 0 错误

  mail(:to => user.email, :subject => "Welcome to My site")

骗局

ActionMailer::Base.smtp_settings = {
 :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => "gmail.com",
  :user_name            => "username",
  :password             => "password",
  :authentication       => "plain",
  :enable_starttls_auto => true
  }
     RegistedMailer.sendingmail(@profolio).deliver

注意本地主机上的应用程序

4

2 回答 2

0

在开发模式下,Rails 不会发送电子邮件。确保根据 Rails Guides Action Mailer Configuration for GMail页面进行设置:

config.action_mailer.delivery_method = :smtp

如果已经设置好了,您可以发布您的日志吗?

您可能还想研究MailCatcher之类的东西,它可以更轻松地在开发模式下测试电子邮件。

于 2013-04-02T23:54:59.993 回答
0

交货方式的设置是什么?它应该是:

config.action_mailer.delivery_method = :smtp
于 2013-04-02T23:45:27.603 回答