aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/base.rb
Commit message (Expand)AuthorAgeFilesLines
* * Don't add charset to content-type header for a part that contains subparts ...Jamis Buck2005-09-011-0/+1
* Multipart messages specify a MIME-Version header automatically #2003 [John Long]Jamis Buck2005-08-221-2/+15
* Add a unified render method to ActionMailer (delegates to ActionView::Base#re...Jamis Buck2005-08-221-4/+10
* Move mailer initialization to a separate (overridable) method, so that subcla...Jamis Buck2005-08-221-9/+15
* ActionMailer::Base.deliver(email) had been accidentally removed, but was docu...Jamis Buck2005-07-311-25/+35
* Fix problem with sendmail delivery where headers should be delimited by \n ch...David Heinemeier Hansson2005-07-171-1/+1
* Added a config example in README #1626 [courtenay]David Heinemeier Hansson2005-07-091-2/+1
* Correctly normalize newlines in outgoing emails before encoding the body [Joh...Jamis Buck2005-07-061-2/+3
* Tuned documentation for release (AM)David Heinemeier Hansson2005-07-061-4/+4
* Better multipart support with implicit multipart/alternative and sorting of s...Jamis Buck2005-07-011-2/+47
* Allow for nested parts in multipart mails #1570 [Flurin Egger]Jamis Buck2005-07-011-19/+2
* Allow template to be explicitly specified #1448 [tuxie@dekadance.se]Jamis Buck2005-06-301-4/+5
* Allow specific "multipart/xxx" content-type to be set on multipart messages #...Jamis Buck2005-06-241-0/+2
* Use the real charset for parts generated by a template, instead of the string...Jamis Buck2005-06-221-1/+1
* Helper support for ActionMailerJamis Buck2005-06-161-1/+7
* Changed test requests to come from 0.0.0.0 instead of 127.0.0.1 such that the...David Heinemeier Hansson2005-06-141-1/+0
* BCC headers are removed when sending via SMTPJamis Buck2005-06-061-1/+5
* Added a "content_type" accessor to allow messages to explicitly specify a con...Jamis Buck2005-06-031-3/+7
* A very thorough refactoring, resulting in new mail property setters and suppo...Jamis Buck2005-05-291-123/+200
* Added automatic decoding of base64 bodies #1214 [Jamis Buck]David Heinemeier Hansson2005-05-021-1/+3
* Added that delivery errors are caught in a way so the mail is still returned ...David Heinemeier Hansson2005-05-021-9/+9
* Fixed that email address like "Jamis Buck, M.D." <wild.medicine@example.net> ...David Heinemeier Hansson2005-04-301-1/+1
* Added that deliver_* will now return the email that was sentDavid Heinemeier Hansson2005-04-181-6/+3
* Improved address header processingDavid Heinemeier Hansson2005-04-131-2/+2
* Address parsing failed when the "to" (or "cc", or whatever) was an array. It ...David Heinemeier Hansson2005-04-131-1/+3
* Dont quote the bodyDavid Heinemeier Hansson2005-04-111-3/+4
* Fixed quoting for all address headers, not just to #955 [Jamis Buck] Added th...David Heinemeier Hansson2005-04-111-14/+43
* Added receiver method for incoming emailDavid Heinemeier Hansson2005-03-201-1/+6
* Updated documentationDavid Heinemeier Hansson2005-02-241-1/+6
* Made Action Mailer templates use UTF-8 as defaultDavid Heinemeier Hansson2005-02-221-4/+3
* Added support for charsets for both subject and body. The default charset is ...David Heinemeier Hansson2005-02-191-6/+29
* Fixed sending of emails to use Tmail#from not the deprecated Tmail#from_addressDavid Heinemeier Hansson2005-01-171-1/+1
* Fixed that bcc and cc should be settable through @bcc and @cc -- not just @he...David Heinemeier Hansson2005-01-131-7/+9
* Updated documentationDavid Heinemeier Hansson2004-12-161-21/+30
* Added access to custom headers, like cc, bcc, and reply-to #268 [Andreas Schw...David Heinemeier Hansson2004-12-071-10/+20
* InitialDavid Heinemeier Hansson2004-11-241-0/+152