Module ActionMailer::DeliveryMethods::ClassMethods
In: lib/action_mailer/delivery_methods.rb

Methods

Public Instance methods

Adds a new delivery method through the given class using the given symbol as alias and the default options supplied:

Example:

  add_delivery_method :sendmail, Mail::Sendmail,
    :location   => '/usr/sbin/sendmail',
    :arguments  => '-i -t'

[Validate]