Rails 4 mailers with gmail smtp
问题 I want to use the Mailer of Rails 4 with the Gmail's smtp configuration In my development file i set: config.action_mailer.perform_deliveries = true config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address => "smtp.gmail.com", :port => 587, :domain => "gmail.com", :user_name => "mymail@gmail.com", :password => "mygmailpassword", :authentication => :plain, :enable_starttls_auto => true } but i don't recive any mails. This is the output of the terminal: To: