aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mail_layout_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Use frozen string literal in actionmailer/Kir Shatrov2017-07-231-0/+2
|
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* applies new string literal convention in actionmailer/testXavier Noria2016-08-061-9/+9
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Remove unnecessary setup and teardown.Zuhao Wan2014-05-131-10/+0
|
* Update actionmailer with new hash syntax.Kirill Nikitin2012-10-071-10/+10
|
* test cases should inherit from AS::TestCaseAaron Patterson2012-01-051-1/+1
|
* Deprecate the old mailer API that was not deprecated yet.José Valim2010-08-291-0/+105
|
* Move old tests to a specific folder and add some delivery method tests.José Valim and Mikel Lindsaar2010-01-241-148/+0
|
* Add new class delivery method API.José Valim and Mikel Lindsaar2010-01-241-22/+20
|
* Delegated ActionMailer::Base.deliveries to Mail.deliveries, added callback ↵José Valim and Mikel Lindsaar2010-01-241-1/+1
| | | | support in Mail to call ActionMailer on delivery, moved deliver to deprecated API in preparation for new API
* latest updatesMikel Lindsaar2010-01-191-0/+1
|
* Updating to Mail 1.5.0, including default values for all Message#field_name ↵Mikel Lindsaar2010-01-021-9/+9
| | | | methods, can access field objects by calling Message#[:field_name]
* Changing body to use :to_s instead of :decoded... better use caseMikel Lindsaar2009-12-271-11/+11
|
* Down to 30 failures totalMikel Lindsaar2009-11-201-9/+9
|
* Starting again on actionmailer integration with mailMikel Lindsaar2009-11-121-20/+42
|
* Make tests run without deprecation warning (just one left).José Valim2009-11-011-2/+6
|
* Allow custom type for multipart emails [#1691 state:resolved]Sean Dague2009-03-101-1/+29
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* ActionMailer should respect content type when choosing layoutsColin Curtin2008-11-211-0/+17
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Revert "Revert "Add layout functionality to mailers.""David Heinemeier Hansson2008-09-091-0/+78
| | | | This reverts commit 36c6aa01ee0a7aee5b0510a8e649c44de318b060.
* Revert "Add layout functionality to mailers."David Heinemeier Hansson2008-09-091-78/+0
| | | | This reverts commit e9a8e0053be3b293ab89fb584f1d660063f107aa.
* Add layout functionality to mailers.Pratik Naik2008-08-311-0/+78
Mailer layouts behaves just like controller layouts, except layout names need to have '_mailer' postfix for them to be automatically picked up.