aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/delivery_method/smtp.rb
Commit message (Collapse)AuthorAgeFilesLines
* Merge Mail with latest Rails and move mail gem to Gemfile.José Valim2009-12-271-2/+2
|\
| * All AM modules are safe to deferJoshua Peek2009-12-221-2/+2
| |
| * avoid generating invalid SMTP commands in ruby pre 1.9Michael Koziarski2009-11-281-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> Conflicts: actionmailer/lib/action_mailer/base.rb
* | Starting again on actionmailer integration with mailMikel Lindsaar2009-11-121-2/+1
|/
* Refactor ActionMailer layout and remove legacy one.José Valim2009-11-011-1/+1
|
* abstract all of the ActionMailer delivery methods into their own classes. ↵Matthew Rudy Jacobs2009-11-011-0/+31
thereby the following are equivalent ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.delivery_method = ActionMailer::DeliveryMethod::Smtp we could equally set our own custom object as long as it provides the instance method :perform_delivery(mail) eg. class MySmsDeliveryMethod def perform_delivery(mail) Sms.send(mail['to'], mail['body']) end end MySmsMailer.delivery_method = MySmsDeliveryMethod.new Signed-off-by: José Valim <jose.valim@gmail.com>