9 lines
275 B
Ruby
9 lines
275 B
Ruby
|
ActionMailer::Base.smtp_settings = {
|
||
|
:address => "smtp.sendgrid.net",
|
||
|
:port => "25",
|
||
|
:authentication => :plain,
|
||
|
:user_name => ENV['SENDGRID_USERNAME'],
|
||
|
:password => ENV['SENDGRID_PASSWORD'],
|
||
|
:domain => ENV['SENDGRID_DOMAIN']
|
||
|
}
|