I am trying to send emails from Heroku up and running. At the moment I can send emails from Heroku via the \"tutorial\" at http://blog.heroku.com/archives/2009/11/9/tech_sen
Please add the following code in config/environments/development.rb
config.action_mailer.raise_delivery_errors = false
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
and also make sure you have added the following in config/initializers/smtp_gmail.rb
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:user_name => "abc@xyz.com",
:password => "password",
:authentication => "plain",
:enable_starttls_auto => true
}