Merge pull request #9320 from mfo/US/sib-to-brevo

tech(smtp): passe du relai SMTP de SendInBlue vers le relai SMTP Brevo
This commit is contained in:
mfo 2023-07-18 14:29:11 +00:00 committed by GitHub
commit f313e4eaed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,8 +10,8 @@ if ENV.key?('SENDINBLUE_BALANCING_VALUE')
ActionMailer::Base.sendinblue_settings = {
user_name: Rails.application.secrets.sendinblue[:username],
password: Rails.application.secrets.sendinblue[:smtp_key],
address: 'smtp-relay.sendinblue.com',
domain: 'smtp-relay.sendinblue.com',
address: 'smtp-relay.brevo.com',
domain: 'smtp-relay.brevo.com',
port: '587',
authentication: :cram_md5
}