aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/base.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Updating readme for ActionMailer::BaseMikel Lindsaar2010-06-071-1/+32
|
* Adding inline attachment support to ActionMailerMikel Lindsaar2010-06-071-1/+5
|
* Extract assets paths and make them available to Action Mailer as wellDavid Heinemeier Hansson2010-06-031-0/+1
|
* Added missing require, we are using bind method defined on ↵Santiago Pastorino2010-05-161-0/+1
| | | | | | | | active_support/core_ext/proc [#4610 state:committed] Signed-off-by: José Valim <jose.valim@gmail.com>
* Remove the need for a special action_mailer.url_for initializer that loads ↵wycats2010-05-151-62/+84
| | | | before anything else
* Cleaning up Action Mailer spelling with and without the spaceMikel Lindsaar2010-05-041-6/+6
|
* Adding more docs to ActionMailerMikel Lindsaar2010-05-041-12/+50
|
* Change event namespace ordering to most-significant first [#4504 state:resolved]Justin George2010-05-021-2/+2
| | | | | | | | | More work still needs to be done on some of these names (render_template.action_view and render_template!.action_view particularly) but this allows (for example) /^sql/ to subscribe to all the various ORMs without further modification Signed-off-by: José Valim <jose.valim@gmail.com>
* Adding ability for the procs to be called within the instance, allows you to ↵Mikel Lindsaar2010-05-021-1/+1
| | | | | | pass results from instance methods to the mail header Signed-off-by: José Valim <jose.valim@gmail.com>
* Adding ability to pass proc's to the ActionMailer class default methodMikel Lindsaar2010-05-021-1/+6
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Only run load hooks once a file has been fully loaded.Nathan Weizenbaum2010-04-271-2/+1
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* template_name and template_path should not be added to mail headers.José Valim2010-04-131-1/+1
|
* Fix ActionMailer test broken in 99d54599215c2a8cea7e57f609e8e578043d71b2José Valim2010-04-121-0/+5
|
* Move set_fields! to the old API module.José Valim2010-04-121-27/+16
|
* Added explict setting of charset in set_fields! method to make sure Mail has ↵Mikel Lindsaar2010-04-111-0/+1
| | | | the user defined default
* Removing quoting.rb, upgrade to 2.1.3.6, changing all utf-8 references to ↵Mikel Lindsaar2010-04-111-12/+11
| | | | UTF-8, updating tests where incorrect encoding
* Replace the placeholder base_hook API with on_load. To specify some code thatwycats2010-03-291-1/+1
| | | | | | | | should run during framework load do: ActiveSupport.on_load(:action_controller) do # Code run in the context of AC::Base end
* adds missing requires for Object#blank? and Object#present?Xavier Noria2010-03-281-0/+1
|
* Ensure details are frozen after @details_keys lookup. The implementation ↵José Valim2010-03-271-1/+1
| | | | waits to freeze until the last required moment, to avoid duping hashes.
* Improve performance of the rendering stack by freezing formats as a sign ↵José Valim2010-03-191-0/+2
| | | | that they shouldn't be further modified.
* Use Array.wrap not Array()Jeremy Kemper2010-03-171-1/+2
|
* Allow anything that responds to render to be given as :template and use ↵José Valim2010-03-121-1/+1
| | | | find_template instead of find in views.
* Clean up the API required from ActionView::Template.José Valim2010-03-091-1/+1
|
* Merge master.José Valim2010-03-081-0/+2
|\
| * Make many parts of Rails lazy. In order to facilitate this,wycats2010-03-071-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | add lazy_load_hooks.rb, which allows us to declare code that should be run at some later time. For instance, this allows us to defer requiring ActiveRecord::Base at boot time purely to apply configuration. Instead, we register a hook that should apply configuration once ActiveRecord::Base is loaded. With these changes, brings down total boot time of a new app to 300ms in production and 400ms in dev. TODO: rename base_hook
* | Bring AM up to date with new rendering stack.José Valim2010-03-081-7/+5
| |
* | Move layout lookup to views.José Valim2010-03-081-1/+0
| |
* | Added template lookup responsible to hold all information used in template ↵José Valim2010-03-071-1/+0
|/ | | | lookup.
* Renamed LocalizedCache to DetailsCache.José Valim2010-02-241-1/+1
|
* Use render instead render_to_body.José Valim2010-02-241-1/+1
|
* Adding options to register observers and interceptors through ↵Mikel Lindsaar2010-02-221-0/+15
| | | | | | ActionMailer::Base.register_observer and ActionMailer::Base.register_interceptor. These hook into Mail.register_interceptor and Mail.register_observer. Also bumped Mail requirement to 2.1.3 Signed-off-by: José Valim <jose.valim@gmail.com>
* Allow to choose the template path and template name used in implicit ↵José Valim2010-02-191-25/+45
| | | | rendering with ActionMailer.
* fix usage examples and more to use new invocationsRomD2010-02-061-1/+1
| | | | Signed-off-by: Carl Lerche <carllerche@mac.com>
* Convert to class_attributeJeremy Kemper2010-02-011-5/+5
|
* Updating Action Mailer documentationMikel Lindsaar2010-01-311-44/+54
|
* Fix some backward incompatible behavior on AM.José Valim2010-01-301-0/+1
|
* ActionMailer should depend just on AbstractController.José Valim2010-01-291-6/+0
|
* Rename 'defaults' class method to 'default' to reflect that it's a declarationJeremy Kemper2010-01-271-14/+14
|
* Fixed bug on HTML only emails getting set to text/plainMikel Lindsaar2010-01-281-1/+1
|
* Also include translation in ActionMailer.José Valim2010-01-261-0/+1
|
* Tidy up tests and docs.José Valim and Mikel Lindsaar2010-01-261-2/+2
|
* Fixing up tests and docs to use defaults :from => 'name' instead of ↵Mikel Lindsaar2010-01-271-1/+2
| | | | defaults({:from => 'name'})
* Merge branch 'master' of github.com:mikel/railsMikel Lindsaar2010-01-271-19/+6
|\ | | | | | | | | Conflicts: actionmailer/lib/action_mailer/base.rb
| * Deprecate old defaults API.José Valim and Mikel Lindsaar2010-01-261-25/+6
| |
* | Fixed up documentation to reflect code change and cleaned up tests of ↵Mikel Lindsaar2010-01-271-21/+19
| | | | | | | | spurious #deliver calls
* | Fixed up being able to pass random headers in with headers, or mail. Also, ↵Mikel Lindsaar2010-01-271-11/+20
|/ | | | undeprecated headers(hash) as this works now too
* Make defaults accept a hash.José Valim and Mikel Lindsaar2010-01-261-37/+41
|
* Implementing class level :defaults hash, instead of delivers_from et alMikel Lindsaar2010-01-261-13/+26
|
* Merge branch 'master' of github.com:mikel/railsJosé Valim and Mikel Lindsaar2010-01-261-9/+22
|\
| * Refactor content type setting, added tests to ensure boundary exists on ↵José Valim and Mikel Lindsaar2010-01-261-9/+22
| | | | | | | | multipart and fixed typo