Просмотр исходного кода

Add SendGrid config for Heroku Cedar stack

master
Adrian Short 11 лет назад
Родитель
Сommit
4c8dde1e73
1 измененных файлов: 11 добавлений и 0 удалений
  1. +11
    -0
      config/environment.rb

+ 11
- 0
config/environment.rb Просмотреть файл

@@ -3,3 +3,14 @@ require File.expand_path('../application', __FILE__)

# Initialize the rails application
Apollo::Application.initialize!

# SendGrid config for Heroku Cedar stack
ActionMailer::Base.smtp_settings = {
:address => 'smtp.sendgrid.net',
:port => '587',
:authentication => :plain,
:user_name => ENV['SENDGRID_USERNAME'],
:password => ENV['SENDGRID_PASSWORD'],
:domain => 'heroku.com',
:enable_starttls_auto => true
}

Загрузка…
Отмена
Сохранить