aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/fixtures
Commit message (Collapse)AuthorAgeFilesLines
* Expand on Action Mailer Fragment caching testsVipul A M2016-04-173-0/+9
|
* Porting ActionController::Caching to ActionMailer::CachingStan Lo2016-02-234-0/+10
|
* Remove not used test fixtureyui-knk2015-12-301-1/+0
| | | | | | 'actionmailer/test/mailers/async_mailer.rb' was deleted by f9da785d0b1b22317cfca25c15fb555e9016accb . This template is not used now.
* Removing unused mailer templatesThiago Pradi2015-03-0118-50/+0
|
* Template lookup now respect default locale and I18n fallbacks.Rafael Mendonça França2014-12-292-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Given the following templates: mailer/demo.html.erb mailer/demo.en.html.erb mailer/demo.pt.html.erb Before this change for a locale that doesn't have its related file the `mailer/demo.html.erb` will be rendered even if `en` is the default locale. Now `mailer/demo.en.html.erb` has precedence over the file without locale. Also, it is possible to give a fallback. mailer/demo.pt.html.erb mailer/demo.pt-BR.html.erb So if the locale is `pt-PT`, `mailer/demo.pt.html.erb` will be rendered given the right I18n fallback configuration. Fixes #11884.
* let mailer templates generate URLs by default [Xavier Noria, Richard Schneeman]Xavier Noria2014-11-241-0/+1
|
* Allow attaching files while the mail view is renderedChristian Felder (masone)2014-09-221-0/+7
|
* add test coverage for the action mailerDmitry Polushkin2014-07-041-0/+1
|
* Ruby's new Hash syntax applied in actionmailerMr A2013-11-142-2/+2
|
* Remove unused raw email fixturesclaudiob2013-09-1215-736/+0
| | | | The tests that used the raw_email_* fixtures were removed in d500ad3
* use _action callbacks in actionmailerFrancesco Rodriguez2012-12-082-0/+0
|
* Do not render views when mail() isn't called. (NullMail refactoring)Yves Senn2012-10-281-0/+1
|
* Asynchronous ActionMailerBrian Cardarella2012-06-231-0/+1
| | | | | | | | Any ActionMailer class can be set to render and delier messages using the new Rails Queue. Some of this work was borrowed (with permission) from Nick Plante's (zapnap) reqsue_mailer gem.
* raise an error if no implicit mailer template could be foundDamien Mathieu2012-06-208-0/+0
|
* mailer can be anonymousSergey Nartimov2012-05-131-0/+1
| | | | closes #5970
* Added a testcase for bug [#5329]Frank Fischer2011-01-191-0/+4
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Ensure templates like template.html are found but still uses the proper ↵José Valim2010-08-261-0/+1
| | | | virtual path.
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-1412-18/+18
| | | | 's/[ \t]*$//' -i {} \;)
* Move config_accessor :asset_host from ActionController::Base to ↵Jeroen van Dijk and Josh Kalderimis2010-07-241-0/+1
| | | | | | | | AbstractController which fixes issues with asset_host in ActionMailer Including: - Moved mailer objects in separate directory - Added two tests for asset_host configuration option
* Adding inline attachment support to ActionMailerMikel Lindsaar2010-06-072-0/+9
|
* Improve performance of the rendering stack by freezing formats as a sign ↵José Valim2010-03-191-0/+1
| | | | that they shouldn't be further modified.
* Fix broken test due to constant collisionJeremy Kemper2010-03-171-0/+0
|
* Add a failing test case for render :layoutMikel Lindsaar2010-01-295-0/+5
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Fixed bug on HTML only emails getting set to text/plainMikel Lindsaar2010-01-282-0/+2
|
* Bring AM tests back to green again.José Valim2010-01-261-1/+0
|
* Failing AM test for legacy multipart alternative renderingJoshua Peek2010-01-262-0/+2
|
* Failing AM test for nested layoutsJoshua Peek2010-01-262-0/+2
|
* Add some view paths tests.José Valim and Mikel Lindsaar2010-01-251-0/+1
|
* Ensure implicit multipart templates with locale works as expected.José Valim and Mikel Lindsaar2010-01-244-0/+4
|
* Add tests to mail helper.José Valim and Mikel Lindsaar2010-01-245-13/+0
|
* Add some tests to collector with templates and any.José Valim and Mikel Lindsaar2010-01-232-0/+2
|
* Get implicit multipart and attachments working together.José Valim and Mikel Lindsaar2010-01-221-0/+1
|
* First work on implicit multipart.José Valim and Mikel Lindsaar2010-01-222-0/+2
|
* Add basic template rendering to new DSL.José Valim and Mikel Lindsaar2010-01-222-2/+1
|
* Down to 30 failures totalMikel Lindsaar2009-11-201-0/+0
|
* More updates... 45 errors left to get it working with Mail gemMikel Lindsaar2009-11-201-0/+0
|
* Mark html safetyJeremy Kemper2009-10-091-1/+1
|
* Fix failing CI test (broken in 2daac47 or e693f45): make ↵Chad Woolley2009-05-271-1/+1
| | | | | | test_multipart_with_template_path_with_dots only test path with dots, and stop failing on unrelated mimetype assertion. The image/jpeg multipart content type is already tested in test_explicitly_multipart_messages. Signed-off-by: Yehuda Katz <wycats@yehuda-katzs-macbookpro41.local>
* Refactor ActionView::PathYehuda Katz + Carl Lerche2009-04-2211-2/+0
| | | | | | | | * Decouple from ActionController and ActionMailer * Bring back localization support. * Prepare to decouple templates from the filesystem. * Prepare to decouple localization from ActionView * Fix ActionMailer to take advantage of ActionView::Path
* Ensure ActionMailer doesn't blow up when a two argument proc is set for the ↵Tekin Suleyman2008-12-011-0/+1
| | | | | | | asset host Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1394 state:committed]
* ActionMailer should respect content type when choosing layoutsColin Curtin2008-11-213-0/+3
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Protect body ivar from being clobbered by the mailer template assignsJoshua Peek2008-09-281-0/+2
|
* Fixed problem causes by leftover backup templates ending in tilde ↵U-ESCAPEE\Mack2008-09-091-0/+10
| | | | | | [state:committed #969] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Revert "Revert "Add layout functionality to mailers.""David Heinemeier Hansson2008-09-095-0/+5
| | | | This reverts commit 36c6aa01ee0a7aee5b0510a8e649c44de318b060.
* Revert "Add layout functionality to mailers."David Heinemeier Hansson2008-09-095-5/+0
| | | | This reverts commit e9a8e0053be3b293ab89fb584f1d660063f107aa.
* Add layout functionality to mailers.Pratik Naik2008-08-315-0/+5
| | | | | Mailer layouts behaves just like controller layouts, except layout names need to have '_mailer' postfix for them to be automatically picked up.
* Ensure templates are rendered if all the parts are already processedJoshua Peek2008-08-131-0/+0
|
* Bah, don't test TMail in AMJeremy Kemper2008-04-032-1/+0
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9219 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Remove empty .rhtml templatesJeremy Kemper2008-02-0715-0/+0
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8820 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Remove old tests which relied on @ being an ATOM to work around old Mail.app ↵Michael Koziarski2007-12-021-34/+0
| | | | | | bugs. Closes #10317 [mikel] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8257 5ecf4fe2-1ee6-0310-87b1-e25e094e27de