Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Prepare for final 2.3 release | David Heinemeier Hansson | 2009-03-15 | 1 | -1/+1 |
| | |||||
* | Allow custom type for multipart emails [#1691 state:resolved] | Sean Dague | 2009-03-10 | 1 | -1/+1 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Ruby 1.9 compat: rename deprecated assert_raises to assert_raise. | Jeremy Kemper | 2009-03-08 | 1 | -1/+1 |
| | | | | [#1617 state:resolved] | ||||
* | Removed the "charset" parameter from the Content-Type header of multipart ↵ | Elliott Wood | 2009-03-02 | 1 | -1/+4 |
| | | | | | | | sections of nested multipart messages. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#2109 state:committed] | ||||
* | Prep for RC2 later today | David Heinemeier Hansson | 2009-02-27 | 1 | -1/+1 |
| | |||||
* | Just require tmail instead of autoloading it to fix issues when using the gem | Marcus Mateus | 2009-02-24 | 1 | -1/+2 |
| | | | | | version [#1851 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | load plugin view_paths to action_mailer view_paths and make action_mailer ↵ | Sven Fuchs | 2009-02-22 | 1 | -1/+3 |
| | | | | | | use them [#2031 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Fixed that ActionMailer should send correctly formatted Return-Path in MAIL ↵ | Matt Jones | 2009-02-05 | 1 | -1/+1 |
| | | | | | | FROM for SMTP [#1842 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | Bump up the year in MIT license files | Pratik Naik | 2009-01-18 | 1 | -1/+1 |
| | |||||
* | Add ActionMailer::Base#enable_starttls_auto option for enabling/disabling ↵ | Jose' Valim | 2009-01-18 | 1 | -7/+13 |
| | | | | | | STARTTLS. [#1731 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Ensure the template format is always passed to the template finder. Now we ↵ | Joshua Peek | 2008-12-21 | 1 | -1/+3 |
| | | | | can cleanup some nasty stuff. | ||||
* | Merge docrails | Pratik Naik | 2008-12-19 | 1 | -0/+1 |
| | |||||
* | Removed deprecated register_template_extension | Joshua Peek | 2008-12-02 | 1 | -6/+0 |
| | |||||
* | Merge branch 'master' of git@github.com:rails/rails | Jeremy Kemper | 2008-11-25 | 1 | -0/+2 |
|\ | |||||
| * | Ensure ActionView will be available to ActionMailer if ActionController is ↵ | Joshua Peek | 2008-11-25 | 1 | -0/+2 |
| | | | | | | | | not loaded | ||||
* | | Explicitly require Action View also | Jeremy Kemper | 2008-11-24 | 1 | -0/+2 |
|/ | |||||
* | Add config.preload_frameworks to load all frameworks at startup. Default to ↵ | Jeremy Kemper | 2008-11-24 | 1 | -2/+0 |
| | | | | false so Rails autoloads itself as it's used. | ||||
* | Add LAZY env flag for testing autoload/lazy load feature | Joshua Peek | 2008-11-24 | 1 | -2/+1 |
| | |||||
* | Remove explicit tmail requires in favor of autoload | Jeremy Kemper | 2008-11-23 | 1 | -2/+0 |
| | |||||
* | use autoload instead of explicit requires for ActionMailer | Joshua Peek | 2008-11-23 | 10 | -47/+63 |
| | |||||
* | ActionMailer should respect content type when choosing layouts | Colin Curtin | 2008-11-21 | 1 | -2/+13 |
| | | | | 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> | ||||
* | Assume that the next version is going to be 2.3 for now | David Heinemeier Hansson | 2008-11-19 | 1 | -2/+2 |
| | |||||
* | Added lambda merging to OptionMerger (especially useful with named_scope and ↵ | David Heinemeier Hansson | 2008-11-15 | 1 | -1/+5 |
| | | | | with_options) [#740 state:commited] (Paweł Kondzior) | ||||
* | Prepare for RC2 | David Heinemeier Hansson | 2008-11-14 | 1 | -1/+1 |
| | |||||
* | Fixed method_missing for ActionMailer so it no longer matches methods where ↵ | Joel Chippindale | 2008-11-11 | 1 | -1/+2 |
| | | | | | | 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 | -6/+8 |
| | | | | | | when no method is found [#1330 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Turn on STARTTLS if it is available in Net::SMTP (added in Ruby 1.8.7) and ↵ | Grant Hollingworth | 2008-11-06 | 1 | -2/+4 |
| | | | | | | the SMTP server supports it [#1336 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | Protect body ivar from being clobbered by the mailer template assigns | Joshua Peek | 2008-09-28 | 1 | -0/+3 |
| | |||||
* | Bump the Version constants to align with the *next* release rather than the ↵ | Michael Koziarski | 2008-09-22 | 1 | -1/+1 |
| | | | | | | previous release. This allows people tracking non-release gems or git submodules to use the constants. | ||||
* | Fixed problem causes by leftover backup templates ending in tilde ↵ | U-ESCAPEE\Mack | 2008-09-09 | 1 | -1/+1 |
| | | | | | | [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 | 1 | -2/+22 |
| | | | | This reverts commit 36c6aa01ee0a7aee5b0510a8e649c44de318b060. | ||||
* | Revert "Add layout functionality to mailers." | David Heinemeier Hansson | 2008-09-09 | 1 | -22/+2 |
| | | | | This reverts commit e9a8e0053be3b293ab89fb584f1d660063f107aa. | ||||
* | Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, ↵ | Jeremy Kemper | 2008-08-31 | 1 | -2/+2 |
| | | | | | | | | | | but it has since been removed from 1.9. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> Conflicts: actionpack/test/controller/layout_test.rb | ||||
* | Add layout functionality to mailers. | Pratik Naik | 2008-08-31 | 1 | -2/+22 |
| | | | | | 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 | -5/+16 |
| | | | | | | state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Harmonize framework require strategy. Don't add self to load path since ↵ | Jeremy Kemper | 2008-08-25 | 1 | -6/+6 |
| | | | | Rails initializer and RubyGems handle it. | ||||
* | Ensure templates are rendered if all the parts are already processed | Joshua Peek | 2008-08-13 | 1 | -2/+3 |
| | |||||
* | Tidy up ActionMailer rendering logic to take advantage of view path cache ↵ | Joshua Peek | 2008-08-06 | 1 | -28/+21 |
| | | | | instead of using file system lookups | ||||
* | Treat ActionMailer template_root as a view path set internally to avoid ↵ | Joshua Peek | 2008-07-31 | 1 | -4/+15 |
| | | | | inheritance and dupping issues | ||||
* | Ensure mailer view path is loaded when it's assigned. Path#[] raises if it ↵ | Jeremy Kemper | 2008-07-31 | 1 | -1/+1 |
| | | | | isn't loaded. | ||||
* | Fix file permissions | Tarmo Tänav | 2008-07-31 | 1 | -0/+0 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Ensure ActionView::PathSet::Path is not initialized with a precompiled path | Joshua Peek | 2008-07-19 | 1 | -1/+2 |
| | |||||
* | Only create a path for ActionMailer template root instead of a path set. ↵ | Joshua Peek | 2008-07-19 | 1 | -2/+2 |
| | | | | Better fix than 7461227 | ||||
* | Ruby 1.9: Call join on template_root instead of to_s | Joshua Peek | 2008-07-19 | 1 | -3/+2 |
| | |||||
* | Merge with docrails. | Pratik Naik | 2008-07-16 | 4 | -6/+6 |
| | |||||
* | Refactor template preloading. New abstractions include Renderable mixins and ↵ | Joshua Peek | 2008-07-12 | 1 | -1/+1 |
| | | | | a refactored Template class. | ||||
* | Replaced TemplateFinder abstraction with ViewLoadPaths | Joshua Peek | 2008-06-17 | 1 | -3/+2 |
| | |||||
* | Ensure render :file works inside templates | Pratik Naik | 2008-06-05 | 1 | -1/+2 |
| | |||||
* | Making ready for release of 2.1 | David Heinemeier Hansson | 2008-05-31 | 1 | -2/+2 |
| |