GeoRSS aggregator and Layar augmented reality server
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

11 行
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