aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test
Commit message (Expand)AuthorAgeFilesLines
* Allow mailer actions named send by using __send__ internally. Closes #6467.Jeremy Kemper2006-11-131-0/+22
* Add assert_emails and assert_no_emails to test the number of emails delivered...Jeremy Kemper2006-11-055-7/+86
* Make mime version default to 1.0. closes #2323Jamis Buck2006-09-093-43/+23
* Make sure quoted-printable text is decoded correctly when only portions of th...Jamis Buck2006-09-092-1/+20
* Make sure DOS newlines in quoted-printable text are normalized to unix newlin...Jamis Buck2006-09-092-0/+21
* set ActiveSupport::Deprecation.debug = true to see backtraces for deprecation...Jeremy Kemper2006-09-041-0/+3
* Added test for custom headers on parts (closes #3043)David Heinemeier Hansson2006-09-021-1/+2
* Automatically included ActionController::UrlWriter, such that URL generation ...David Heinemeier Hansson2006-08-252-0/+91
* Add forgotten test/abstract_unitJeremy Kemper2006-07-031-0/+7
* Mailer template root applies to a class and its subclasses rather than acting...Jeremy Kemper2006-06-305-33/+19
* r4730@asus: jeremy | 2006-06-29 13:13:38 -0700Jeremy Kemper2006-06-291-1/+1
* Resolve conflict among mailer actions with the same name. Closes #5520.Jeremy Kemper2006-06-296-3/+41
* Nil charset caused subject line to be improperly quoted in implicitly multipa...Jamis Buck2006-03-191-0/+13
* Parse content-type apart before using it so that sub-parts of the header can ...Jamis Buck2006-03-181-0/+14
* Make custom headers work in subparts (closes #4034)Jamis Buck2006-03-181-0/+15
* Make TMail::Mail#has_attachments? use logic from #attachment? (closes #3815) ...David Heinemeier Hansson2006-02-251-0/+1
* Template paths with dot chars in them no longer mess up implicit template sel...Jamis Buck2006-01-292-1/+21
* Make sure anything with content-disposition of "attachment" is passed to the ...Jamis Buck2006-01-232-1/+11
* Make sure TMail#attachments includes anything with content-disposition of "at...Jamis Buck2006-01-232-0/+36
* Stricter matching for implicitly multipart filenames excludes files ending in...Jeremy Kemper2005-11-152-0/+2
* Add a new test case to demonstrate that subject headers are being properly en...Jamis Buck2005-11-061-0/+20
* * Don't add charset to content-type header for a part that contains subparts ...Jamis Buck2005-09-011-5/+15
* Preserve underscores when unquoting message bodies #1930Jamis Buck2005-09-012-0/+27
* Encode multibyte characters correctly #1894Jamis Buck2005-09-011-0/+48
* Multipart messages specify a MIME-Version header automatically #2003 [John Long]Jamis Buck2005-08-221-0/+24
* Add a unified render method to ActionMailer (delegates to ActionView::Base#re...Jamis Buck2005-08-221-0/+48
* Fixture for tests in [2034]Jamis Buck2005-08-221-0/+32
* Look at content-location header (if available) to determine filename of attac...Jamis Buck2005-08-221-0/+7
* ActionMailer::Base.deliver(email) had been accidentally removed, but was docu...Jamis Buck2005-07-311-0/+6
* Correctly normalize newlines in outgoing emails before encoding the body [Joh...Jamis Buck2005-07-061-0/+15
* Added unit test to confirm that #1393 is fixed in HEADJamis Buck2005-07-041-2/+20
* Avoid adding nil values to mail headers #1392Jamis Buck2005-07-041-1/+15
* Better multipart support with implicit multipart/alternative and sorting of s...Jamis Buck2005-07-012-3/+16
* Allow for nested parts in multipart mails #1570 [Flurin Egger]Jamis Buck2005-07-011-0/+27
* Normalize line endings in outgoing mail bodies to "\n" #1536 [John Long]Jamis Buck2005-06-301-0/+14
* Allow template to be explicitly specified #1448 [tuxie@dekadance.se]Jamis Buck2005-06-301-0/+24
* Allow specific "multipart/xxx" content-type to be set on multipart messages #...Jamis Buck2005-06-241-6/+21
* Use the real charset for parts generated by a template, instead of the string...Jamis Buck2005-06-221-0/+2
* Unquoted @ chars in received email headers are parsed properly in spite of RF...Jamis Buck2005-06-222-0/+40
* Helper support for ActionMailerJamis Buck2005-06-166-0/+110
* Fixture for new test in [1395]Jamis Buck2005-06-081-0/+20
* Silently ignore Errno::EINVAL errors when converting between charsets. Some m...Jamis Buck2005-06-081-0/+6
* Add a test case for malformed email headersJamis Buck2005-06-062-0/+33
* Don't error while processing encoded attachment names #1340 [lon@speedymac.com]Jamis Buck2005-06-062-0/+54
* Handle parsing of recursively multipart messagesJamis Buck2005-06-062-0/+62
* BCC headers are removed when sending via SMTPJamis Buck2005-06-061-0/+30
* Added a "content_type" accessor to allow messages to explicitly specify a con...Jamis Buck2005-06-031-0/+13
* Don't apply a charset to attachments. Wrap base64-encoded lines.Jamis Buck2005-06-031-0/+2
* Ignore Iconv::IllegalSequence errors when converting text #1341 [lon@speedyma...Jamis Buck2005-05-302-0/+26
* A very thorough refactoring, resulting in new mail property setters and suppo...Jamis Buck2005-05-293-25/+83