Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move background jobs to the 'jobs' branch until fully baked. Not shipping ↵ | Jeremy Kemper | 2012-12-21 | 1 | -13/+0 |
| | | | | with Rails 4.0. | ||||
* | Merge pull request #8450 from senny/8448_mailer_return_values | Rafael Mendonça França | 2012-12-10 | 1 | -0/+6 |
|\ | | | | | the return value of mailer methods should not be relevant | ||||
| * | The return value from mailer methods is not relevant. | Yves Senn | 2012-12-10 | 1 | -0/+6 |
| | | |||||
* | | use _action callbacks in actionmailer | Francesco Rodriguez | 2012-12-08 | 1 | -10/+10 |
|/ | |||||
* | Explicit multipart messages respect :parts_order | Nate Berkopec | 2012-11-19 | 1 | -21/+21 |
| | | | | | | | | | As issue #7978, the order in which ActionMailer sends multipart messages could be unintentionally overwritten if a block is passed to the mail method. This changes the mail method such that :parts_order is always respected, regardless of whether a block is passed to mail. | ||||
* | Revert "Support `Mailer.deliver_foo(*args)` as a synonym for ↵ | Jon Leighton | 2012-10-30 | 1 | -7/+0 |
| | | | | | | | | | | | | `Mailer.foo(*args).deliver`." This reverts commit 7e0cf563639bc7508da381b1b8321c7a89be1aa8. Conflicts: actionmailer/CHANGELOG.md See discussion at https://github.com/rails/rails/commit/7e0cf563639bc7508da381b1b8321c7a89be1aa8#commitcomment-2075489 | ||||
* | Do not render views when mail() isn't called. (NullMail refactoring) | Yves Senn | 2012-10-28 | 1 | -0/+6 |
| | |||||
* | Update actionmailer with new hash syntax. | Kirill Nikitin | 2012-10-07 | 1 | -32/+32 |
| | |||||
* | Support `Mailer.deliver_foo(*args)` as a synonym for ↵ | Jon Leighton | 2012-09-28 | 1 | -0/+7 |
| | | | | | | | `Mailer.foo(*args).deliver`. This makes it easy to write e.g. `Mailer.expects(:deliver_foo)` when testing code that calls the mailer. | ||||
* | Use synchronous queue by default. Separate queued message delivery jobs from ↵ | Jeremy Kemper | 2012-09-16 | 1 | -16/+7 |
| | | | | the queued message wrappers so the queue itself needn't be marshaled (due to queue reference QueuedMessage). | ||||
* | Move queue classes to ActiveSupport | Santiago Pastorino | 2012-09-14 | 1 | -2/+2 |
| | |||||
* | Action Mailer async flag is true by default using a Synchronous impl | Santiago Pastorino | 2012-09-11 | 1 | -3/+3 |
| | |||||
* | Added missing require. When performing rake test:isolated, test/base_test.rb ↵ | kennyj | 2012-08-29 | 1 | -0/+1 |
| | | | | was break. | ||||
* | Fix ActionMailer tests that depend on run order | Francesco Rodriguez | 2012-08-23 | 1 | -5/+9 |
| | |||||
* | Fix failing AM test due to missing template | Carlos Antonio da Silva | 2012-07-06 | 1 | -1/+1 |
| | |||||
* | Introduce config.action_mailer.default_from= | Robert Pankowecki | 2012-07-03 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Allows to easily set :from, :replay_to, etc. options in config/application.rb using simple syntax: config.action_mailer.default_options = {from:"no-replay@example.org"} This was not possible using #default method because config.action_mailer.default(from: "no-replay@example.org") is interpreated as reader method and just returns nil. It would not call ActionMailer::Base.default method. The only way of calling this method from config/application.rb was to use the direct syntax which looks ugly in my opinion: config.assets.enabled = false config.assets.version = '1.0' config.encoding = "utf-8" config.action_mailer.default_url_options= { host:"example.org", protocol:"https" } ActionMailer::Base.default(from: "no-replay@example.org") | ||||
* | Some final syntax fixes | Brian Cardarella | 2012-06-24 | 1 | -2/+1 |
| | |||||
* | Forcing the message sending is no longer necessary | Brian Cardarella | 2012-06-24 | 1 | -9/+0 |
| | |||||
* | Support for custom queues on the mailer | Brian Cardarella | 2012-06-23 | 1 | -5/+16 |
| | | | | Credit goes to *Aaron Patterson* (tenderlove) | ||||
* | Force message delivery despite async | Brian Cardarella | 2012-06-23 | 1 | -0/+8 |
| | |||||
* | Asynchronous ActionMailer | Brian Cardarella | 2012-06-23 | 1 | -0/+14 |
| | | | | | | | | 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 found | Damien Mathieu | 2012-06-20 | 1 | -0/+7 |
| | |||||
* | mailer can be anonymous | Sergey Nartimov | 2012-05-13 | 1 | -0/+13 |
| | | | | closes #5970 | ||||
* | Add ability to define callbacks in ActionMailer using ↵ | Justin S. Leitgeb | 2012-03-11 | 1 | -0/+46 |
| | | | | | | | | | | | | | | | | | AbstractController::Callbacks. Prior to this commit, there isn't a good way of adding things like default inline attachments to an email. This Stack Overflow thread shows people using hooks like the 'default' method in ActionMailer::Base to call a Proc for message configuration: http://stackoverflow.com/questions/5113121/rails-use-same-attachment-for-all-emails-using-layout This has the unintended side effect of setting a message header, so it's not a good solution. This pull request adds support for message modifications by including AbstractController:Callbacks in ActionMailer::Base. It includes tests and documentation for the functionality provided by including this module. | ||||
* | Fix broken tests | Santiago Pastorino | 2012-03-10 | 1 | -0/+2 |
| | |||||
* | Fix actionmailer tests broken by #4751a69 | Justin S. Leitgeb | 2012-03-10 | 1 | -1/+1 |
| | |||||
* | remove checks for encodings availability | Sergey Nartimov | 2011-12-25 | 1 | -2/+2 |
| | |||||
* | remove AM delegating register_observer and register_interceptor to Mail and ↵ | Josh Kalderimis | 2011-04-04 | 1 | -0/+40 |
| | | | | | | instead implement smarter versions allowing for string class names, also added proper Railtie support with tests. Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Fixed indentation in actionmailer base_test [#6538 state:committed] | Dalibor Nasevic | 2011-03-07 | 1 | -2/+2 |
| | | | | Signed-off-by: Xavier Noria <fxn@hashref.com> | ||||
* | No need of instance variable | Dalibor Nasevic | 2011-03-02 | 1 | -3/+3 |
| | | | | | | [#6502 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Deprecate the old mailer API that was not deprecated yet. | José Valim | 2010-08-29 | 1 | -3/+0 |
| | |||||
* | Ensure templates like template.html are found but still uses the proper ↵ | José Valim | 2010-08-26 | 1 | -0/+6 |
| | | | | virtual path. | ||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -8/+8 |
| | | | | 's/[ \t]*$//' -i {} \;) | ||||
* | Reload action_methods in AbstractController after defining new method. | Piotr Sarnacki | 2010-08-04 | 1 | -0/+12 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Move config_accessor :asset_host from ActionController::Base to ↵ | Jeroen van Dijk and Josh Kalderimis | 2010-07-24 | 1 | -129/+27 |
| | | | | | | | | AbstractController which fixes issues with asset_host in ActionMailer Including: - Moved mailer objects in separate directory - Added two tests for asset_host configuration option | ||||
* | Time has it own implementation of xmlschema, now AMo doesn't depend on TZInfo | Santiago Pastorino | 2010-07-02 | 1 | -0/+1 |
| | | | | | | [#4979 state:committed] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | subject is automatically looked up on I18n using mailer_name and action_name ↵ | José Valim | 2010-06-12 | 1 | -1/+1 |
| | | | | as scope as in t('.subject') | ||||
* | Adding inline attachment support to ActionMailer | Mikel Lindsaar | 2010-06-07 | 1 | -0/+17 |
| | |||||
* | Use better assertion methods for testing | Neeraj Singh | 2010-05-19 | 1 | -2/+2 |
| | | | | | | [#4645 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Adding ability for the procs to be called within the instance, allows you to ↵ | Mikel Lindsaar | 2010-05-02 | 1 | -1/+14 |
| | | | | | | 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 method | Mikel Lindsaar | 2010-05-02 | 1 | -0/+17 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | template_name and template_path should not be added to mail headers. | José Valim | 2010-04-13 | 1 | -5/+5 |
| | |||||
* | Fixing up attachment encoding specs to work with latest mail - and be correct | Mikel Lindsaar | 2010-03-28 | 1 | -2/+18 |
| | |||||
* | Mail now correctly bundles up the charset into the content type field | Mikel Lindsaar | 2010-03-28 | 1 | -7/+7 |
| | |||||
* | Improve performance of the rendering stack by freezing formats as a sign ↵ | José Valim | 2010-03-19 | 1 | -22/+36 |
| | | | | that they shouldn't be further modified. | ||||
* | Finish cleaning up rendering stack from views and move assigns evaluation to ↵ | José Valim | 2010-03-12 | 1 | -0/+2 |
| | | | | controller (so plugins and/or controllers can overwrite just one method). | ||||
* | Adding options to register observers and interceptors through ↵ | Mikel Lindsaar | 2010-02-22 | 1 | -0/+26 |
| | | | | | | 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é Valim | 2010-02-19 | 1 | -21/+36 |
| | | | | rendering with ActionMailer. | ||||
* | Fixing actionmailer tests for CI | Mikel Lindsaar | 2010-02-06 | 1 | -1/+2 |
| | |||||
* | Make AM test suite green. | José Valim | 2010-02-01 | 1 | -2/+2 |
| |