GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
309 B

  1. ActionMailer::Base.smtp_settings = {
  2. :address => 'smtp.sendgrid.net',
  3. :port => '587',
  4. :authentication => :plain,
  5. :user_name => ENV['SENDGRID_USERNAME'],
  6. :password => ENV['SENDGRID_PASSWORD'],
  7. :domain => 'heroku.com'
  8. }
  9. ActionMailer::Base.delivery_method = :smtp