module Aws::Rails
def self.add_action_mailer_delivery_method(name = :aws_sdk, options = {})
-
options
(Hash
) -- The options you wish to pass on to the -
name
(Symbol
) -- The name of the ActionMailer delivery method to
def self.add_action_mailer_delivery_method(name = :aws_sdk, options = {}) ActiveSupport.on_load(:action_mailer) do self.add_delivery_method(name, Aws::Rails::Mailer, options) end end