开发者

Smtp error in sending mails in rails

I am trying to send mail on registration. In my console i am getting as Mail sent. But I am not getting any mail..

My development.rb f开发者_StackOverflow中文版ile has:

config.cache_classes = false
config.log_level = :debug

# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true

# Show full error reports and disable caching
config.action_controller.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.default_url_options = {:host => "localhost:3000"}
config.action_mailer.delivery_method = :smtp
config.action_mailer.default_charset = 'utf-8'

config.action_mailer.smtp_settings = {
  :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => 'gmail.com',
  :user_name            => "mailme@gmail.com",
  :password             => "gmailpwd",
  :authentication       => 'plain',
  :enable_starttls_auto => true
}

Please give suggestions why I am not getting mail ??


Try the following:

config.action_mailer.perform_deliveries = true
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜