소스 검색

Add SendGrid config for Heroku Cedar stack

master
Adrian Short 11 년 전
부모
커밋
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
}

불러오는 중...
취소
저장