Skip to content

Commit

Permalink
Read email username env var
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrif committed Apr 6, 2022
1 parent cb48717 commit 3839bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
:address => ENV.fetch('SENDGRID_ADDRESS'),
:port => '587',
:authentication => :plain,
:user_name => "apikey",
:user_name => ENV.fetch('SENDGRID_USERNAME'),
:password => ENV.fetch('SENDGRID_PASSWORD'),
:domain => ENV.fetch('SENDGRID_DOMAIN'),
:enable_starttls_auto => true
Expand Down

0 comments on commit 3839bdf

Please sign in to comment.