我试图通过在轨道上使用ruby将邮件发送到邮件但是没有传递 虽然代码中有0个错误
mail(:to => user.email, :subject => "Welcome to My site")
con
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
请注意 应用程序buit on localhost
答案 0 :(得分:0)
送货方式的设定是什么?它应该是:
config.action_mailer.delivery_method = :smtp
答案 1 :(得分:0)
在开发模式下,Rails不会发送电子邮件。请务必设置此per the Rails Guides Action Mailer Configuration for GMail页面:
config.action_mailer.delivery_method = :smtp
如果已设置,您可以发布日志吗?
您可能还想调查something like MailCatcher,这样可以更轻松地在开发模式下测试电子邮件。