GeoRSS aggregator and Layar augmented reality server
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

11 righe
356 B

  1. if(Rails.env.production?)
  2. ActionMailer::Base.smtp_settings = {
  3. :address => 'smtp.sendgrid.net',
  4. :port => '587',
  5. :authentication => :plain,
  6. :user_name => ENV['SENDGRID_USERNAME'],
  7. :password => ENV['SENDGRID_PASSWORD'],
  8. :domain => 'heroku.com'
  9. }
  10. ActionMailer::Base.delivery_method = :smtp
  11. end