ソースを参照

Added SendGrid config for Heroku

master
Adrian Short 12年前
コミット
271a6979d2
1個のファイルの変更9行の追加0行の削除
  1. +9
    -0
      config/initializers/mail.rb

+ 9
- 0
config/initializers/mail.rb ファイルの表示

@@ -0,0 +1,9 @@
ActionMailer::Base.smtp_settings = {
:address => 'smtp.sendgrid.net',
:port => '587',
:authentication => :plain,
:user_name => ENV['SENDGRID_USERNAME'],
:password => ENV['SENDGRID_PASSWORD'],
:domain => 'heroku.com'
}
ActionMailer::Base.delivery_method = :smtp

読み込み中…
キャンセル
保存