04c13190c3
client_key is exposed to the client via gon, so if we use it for sending email too we are exposing a key so anybody could send an email. The current client_key has a different level of right and can't send emails so it's ok to expose it.
16 lines
519 B
Ruby
16 lines
519 B
Ruby
class DynamicSmtpSettingsInterceptor
|
|
def self.delivering_email(message)
|
|
if ENV['SENDINBLUE_BALANCING'] == 'enabled'
|
|
if rand(0..99) < ENV['SENDINBLUE_BALANCING_VALUE'].to_i
|
|
message.delivery_method.settings = {
|
|
user_name: ENV['SENDINBLUE_USER_NAME'],
|
|
password: ENV['SENDINBLUE_SMTP_KEY'],
|
|
address: 'smtp-relay.sendinblue.com',
|
|
domain: 'smtp-relay.sendinblue.com',
|
|
port: '587',
|
|
authentication: :cram_md5
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|