Smtp error in sending mails in rails -
trying send mail on registration. in console getting mail sent. not getting mail..
my development.rb
file has:
config.cache_classes = false config.log_level = :debug # log error messages when accidentally call methods on nil. config.whiny_nils = true # show full error reports , 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 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 not getting mail ??
try following:
config.action_mailer.perform_deliveries = true
Comments
Post a Comment