You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/config/initializers/03_mailer.rb

6 lines
246 B

if Cartodb.config.present? && Cartodb.config[:action_mailer].present?
Cartodb.config[:action_mailer].each do |method, value|
value = value.to_sym if method.to_s == "delivery_method"
ActionMailer::Base.send("#{method}=", value)
end
end