aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer
Commit message (Expand)AuthorAgeFilesLines
* 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-064-8/+14
* Tuned documentation for release (AM)David Heinemeier Hansson2005-07-066-44/+15
* Avoid adding nil values to mail headers #1392Jamis Buck2005-07-041-4/+9
* 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-013-33/+70
* Normalize line endings in outgoing mail bodies to "\n" #1536 [John Long]Jamis Buck2005-06-301-1/+5
* 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
* Unquoted @ chars in received email headers are parsed properly in spite of RF...Jamis Buck2005-06-222-4/+4
* Helper support for ActionMailerJamis Buck2005-06-162-1/+143
* 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
* Silently ignore Errno::EINVAL errors when converting between charsets. Some m...Jamis Buck2005-06-081-1/+4
* Don't error while processing encoded attachment names #1340 [lon@speedymac.com]Jamis Buck2005-06-061-2/+6
* Handle parsing of recursively multipart messagesJamis Buck2005-06-061-3/+10
* BCC headers are removed when sending via SMTPJamis Buck2005-06-062-2/+6
* Added a "content_type" accessor to allow messages to explicitly specify a con...Jamis Buck2005-06-032-5/+9
* Don't apply a charset to attachments. Wrap base64-encoded lines.Jamis Buck2005-06-031-44/+4
* Ignore Iconv::IllegalSequence errors when converting text #1341 [lon@speedyma...Jamis Buck2005-05-301-0/+5
* A very thorough refactoring, resulting in new mail property setters and suppo...Jamis Buck2005-05-297-125/+448
* Step cautiously around subheaders in TMail #1285 [Jamis Buck]David Heinemeier Hansson2005-05-103-4/+8
* Fix attachments and content-type problems #1276 [Jamis Buck] Fix to only perf...David Heinemeier Hansson2005-05-102-11/+12
* Fixed the TMail#body method to look at the content-transfer-encoding header a...David Heinemeier Hansson2005-05-061-81/+89
* 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
* Fixed unquoting of emails that doesn't have an explicit charset #1036 [wolfga...David Heinemeier Hansson2005-04-071-2/+3
* Fixed .id => .object_id in TMailDavid Heinemeier Hansson2005-04-031-2/+2
* Fixed that if charset was found that the end of a mime part declaration TMail...David Heinemeier Hansson2005-03-263-2/+4
* Added rescue for missing iconv library and throws warnings if subject/body is...David Heinemeier Hansson2005-03-231-63/+80
* Protect against nil strings and empty conversion basesDavid Heinemeier Hansson2005-03-211-4/+5
* Made the unquoted subject and body the defaultDavid Heinemeier Hansson2005-03-213-7/+9
* Added receiver method for incoming emailDavid Heinemeier Hansson2005-03-201-1/+6
* Dont choke on nil bodiesDavid Heinemeier Hansson2005-03-191-2/+2
* Only include attachments that arent blankDavid Heinemeier Hansson2005-03-191-2/+8
* Added better quoting and attachments handling in anticipation for ActionMaile...David Heinemeier Hansson2005-03-183-0/+108
* 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-132-8/+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-2424-0/+7648