我在development.rb
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.smtp_settings = {
:address => "smtp.mandrillapp.com",
:port => 587,
:authentication => 'login',
:user_name => "example@mail.com",
:password => "xxxxxxxx",
:enable_starttls_auto => true
}
但是在日志邮件中发送没有任何错误,但我没有在我的邮箱中收到任何邮件。我尽可能地尝试但没有运气。请帮我解决这个问题。