我正在尝试制作一个应用程序,在用户注册时发送一封电子邮件。
我在 config/application.rb 文件中输入了 gmail 的 smtp 设置,邮件功能看起来像
mail(:to => "me@me.com", :subject => "Mail!", :from => "another@me.com", :content_type => "text/html")
现在当我看到日志时,我看到它说邮件已发送,但我根本没有收到任何邮件......
另外,当我调用邮件传递功能时Emails.signed(@user).deliver
,表单页面不会重定向,但如果我注释掉电子邮件发送代码,它可以工作
Emails.signed(@user).deliver
或者
mail(:to => "me@me.com", :subject => "Mail!", :from => "another@me.com", :content_type => "text/html")
谢谢 :)
编辑:开发.rb
App::Application.configure do
# Settings specified here will take precedence over those in config/environment.rb
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the webserver when you make code changes.
config.cache_classes = false
# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
# Show full error reports and disable caching
config.consider_all_requests_local = true
config.action_view.debug_rjs = true
config.action_controller.perform_caching = false
# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
# Print deprecation notices to the Rails logger
config.active_support.deprecation = :log
end