Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed that ActionMailer should send correctly formatted Return-Path in MAIL ↵ | Matt Jones | 2009-02-05 | 1 | -0/+1 |
| | | | | | | FROM for SMTP [#1842 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | Require rubygems | Jeremy Kemper | 2009-02-03 | 1 | -1/+1 |
| | |||||
* | Bump mocha requirement for Ruby 1.9 compat. Remove uses_mocha. | Jeremy Kemper | 2009-02-03 | 2 | -11/+3 |
| | |||||
* | Add ActionMailer::Base#enable_starttls_auto option for enabling/disabling ↵ | Jose' Valim | 2009-01-18 | 1 | -0/+12 |
| | | | | | | STARTTLS. [#1731 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Make ActioMailer quoting test play nice with Ruby 1.9 [#1726 state:resolved] | Mike Gunderloy | 2009-01-16 | 1 | -2/+4 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Clean up view path cruft and split path implementations into Template::Path ↵ | Joshua Peek | 2008-12-29 | 1 | -1/+0 |
| | | | | and Template::EagerPath | ||||
* | Ensure the template format is always passed to the template finder. Now we ↵ | Joshua Peek | 2008-12-21 | 1 | -3/+6 |
| | | | | can cleanup some nasty stuff. | ||||
* | Fix tests broken by switch to Pathname | Jeremy Kemper | 2008-12-09 | 1 | -3/+3 |
| | |||||
* | Register bogus template handlers for ActionMailer test fixtures | Joshua Peek | 2008-12-03 | 2 | -0/+10 |
| | |||||
* | Ensure ActionMailer doesn't blow up when a two argument proc is set for the ↵ | Tekin Suleyman | 2008-12-01 | 2 | -0/+55 |
| | | | | | | | asset host Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1394 state:committed] | ||||
* | Remove explicit tmail requires in favor of autoload | Jeremy Kemper | 2008-11-23 | 1 | -1/+0 |
| | |||||
* | ActionMailer should respect content type when choosing layouts | Colin Curtin | 2008-11-21 | 4 | -0/+20 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Fixed RFC-2045 quoted-printable bug [#1421 state:committed] | Alexey Mahotkin | 2008-11-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | http://www.faqs.org/rfcs/rfc2045.html says: may be represented by an "=" followed by a two digit hexadecimal representation of the octet's value. The digits of the hexadecimal alphabet, for this purpose, are "0123456789ABCDEF". Uppercase letters must be used; lowercase letters are not allowed. ActionMailer, however, used "=%02x" specification. Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | Merge branch 'master' into testing | Jeremy Kemper | 2008-11-15 | 1 | -0/+14 |
|\ | |||||
| * | Added lambda merging to OptionMerger (especially useful with named_scope and ↵ | David Heinemeier Hansson | 2008-11-15 | 1 | -0/+2 |
| | | | | | | | | with_options) [#740 state:commited] (Paweł Kondzior) | ||||
| * | Fixed method_missing for ActionMailer so it no longer matches methods where ↵ | Joel Chippindale | 2008-11-11 | 1 | -0/+4 |
| | | | | | | | | | | | | deliver or create are not a suffix [#1318 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Fix for ActionMailer::Base.method_missing so that it raises NoMethodError ↵ | Joel Chippindale | 2008-11-11 | 1 | -0/+8 |
| | | | | | | | | | | | | when no method is found [#1330 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | | Ruby 1.9 compat: check for minitest's assertion also | Jeremy Kemper | 2008-11-08 | 1 | -3/+3 |
|/ | |||||
* | Turn on STARTTLS if it is available in Net::SMTP (added in Ruby 1.8.7) and ↵ | Grant Hollingworth | 2008-11-06 | 2 | -2/+20 |
| | | | | | | the SMTP server supports it [#1336 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | Fixed load path for actionmailer and activesupport tests to always load from ↵ | madlep | 2008-10-04 | 1 | -0/+2 |
| | | | | | | | | local lib files. [#983 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | Protect body ivar from being clobbered by the mailer template assigns | Joshua Peek | 2008-09-28 | 2 | -0/+14 |
| | |||||
* | Fixed problem causes by leftover backup templates ending in tilde ↵ | U-ESCAPEE\Mack | 2008-09-09 | 1 | -0/+10 |
| | | | | | | [state:committed #969] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | Revert "Revert "Add layout functionality to mailers."" | David Heinemeier Hansson | 2008-09-09 | 6 | -0/+83 |
| | | | | This reverts commit 36c6aa01ee0a7aee5b0510a8e649c44de318b060. | ||||
* | Revert "Add layout functionality to mailers." | David Heinemeier Hansson | 2008-09-09 | 6 | -83/+0 |
| | | | | This reverts commit e9a8e0053be3b293ab89fb584f1d660063f107aa. | ||||
* | Add layout functionality to mailers. | Pratik Naik | 2008-08-31 | 6 | -0/+83 |
| | | | | | Mailer layouts behaves just like controller layouts, except layout names need to have '_mailer' postfix for them to be automatically picked up. | ||||
* | ActionMailer should respond_to? to methods handled by method_missing [#700 ↵ | James Mead | 2008-08-29 | 1 | -0/+52 |
| | | | | | | state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Removed old deprecation test because the warning was removed in 1129a24 | Joshua Peek | 2008-08-22 | 1 | -9/+3 |
| | |||||
* | Ensure templates are rendered if all the parts are already processed | Joshua Peek | 2008-08-13 | 1 | -0/+0 |
| | |||||
* | Tidy up ActionMailer rendering logic to take advantage of view path cache ↵ | Joshua Peek | 2008-08-06 | 1 | -20/+11 |
| | | | | instead of using file system lookups | ||||
* | Fix file permissions | Tarmo Tänav | 2008-07-31 | 1 | -0/+0 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Only create a path for ActionMailer template root instead of a path set. ↵ | Joshua Peek | 2008-07-19 | 1 | -3/+3 |
| | | | | Better fix than 7461227 | ||||
* | Update uses_mocha in ActionMailer and ActiveResource | Joshua Peek | 2008-07-19 | 1 | -5/+13 |
| | |||||
* | Stubba is included in Mocha already | Joshua Peek | 2008-07-11 | 1 | -2/+1 |
| | |||||
* | Replaced TemplateFinder abstraction with ViewLoadPaths | Joshua Peek | 2008-06-17 | 1 | -3/+3 |
| | |||||
* | Add ActionMailer#reply_to. [#245 state:resolved] | Adam | 2008-05-29 | 1 | -0/+34 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Bah, don't test TMail in AM | Jeremy Kemper | 2008-04-03 | 3 | -19/+0 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9219 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Ruby 1.9 compat: compare with same encoding | Jeremy Kemper | 2008-04-03 | 2 | -11/+18 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9218 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | force_encoding to ascii-8bit instead of nil | Jeremy Kemper | 2008-04-01 | 1 | -20/+18 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9184 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Ruby 1.9 compat: mark utf-8 encoding. | Jeremy Kemper | 2008-03-31 | 1 | -0/+1 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9165 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Remove empty .rhtml templates | Jeremy Kemper | 2008-02-07 | 16 | -7/+7 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8820 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Less verbose mail logging: just recipients for :info log level; the whole ↵ | Jeremy Kemper | 2008-02-02 | 1 | -1/+2 |
| | | | | | | email for :debug only. Closes #8000. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8781 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Ruby 1.9 compat: test encoding fixes. Closes #10597 [murphy] | Jeremy Kemper | 2008-01-19 | 1 | -1/+5 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8666 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Updated TMail to version 1.2.1 [raasdnil] | Rick Olson | 2008-01-11 | 1 | -1/+1 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8620 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | * Continue evolution toward ActiveSupport::TestCase and friends. #10679 ↵ | Jeremy Kemper | 2008-01-05 | 1 | -8/+2 |
| | | | | | | | | | [Josh Peek] * TestCase: introduce declared setup and teardown callbacks. Pass a list of methods and an optional block to call before setup or after teardown. Setup callbacks are run in the order declared; teardown callbacks are run in reverse. [Jeremy Kemper] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8570 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | require abstract_unit directly since test is in load path | Jeremy Kemper | 2008-01-05 | 8 | -9/+9 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8565 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fixed that you don't have to call super in ActionMailer::TestCase#setup ↵ | David Heinemeier Hansson | 2008-01-03 | 1 | -0/+18 |
| | | | | | | (closes #10406) [jamesgolick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8536 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Remove old tests which relied on @ being an ATOM to work around old Mail.app ↵ | Michael Koziarski | 2007-12-02 | 3 | -66/+4 |
| | | | | | | bugs. Closes #10317 [mikel] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8257 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Allow body to be specified for nested parts with action mailer. Closes ↵ | Michael Koziarski | 2007-11-29 | 1 | -0/+23 |
| | | | | | | #10271 [redinger] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8238 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Update ActionMailer so it treats ActionView the same way that ↵ | Rick Olson | 2007-11-26 | 3 | -1/+14 |
| | | | | | | ActionController does. Closes #10244 [rick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8212 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Add missing sub template fixtures. References #10130 [java] | Michael Koziarski | 2007-11-22 | 2 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8188 5ecf4fe2-1ee6-0310-87b1-e25e094e27de |