aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/base_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add ability to define callbacks in ActionMailer using ↵Justin S. Leitgeb2012-03-111-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 testsSantiago Pastorino2012-03-101-0/+2
|
* Fix actionmailer tests broken by #4751a69Justin S. Leitgeb2012-03-101-1/+1
|
* remove checks for encodings availabilitySergey Nartimov2011-12-251-2/+2
|
* remove AM delegating register_observer and register_interceptor to Mail and ↵Josh Kalderimis2011-04-041-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 Nasevic2011-03-071-2/+2
| | | | Signed-off-by: Xavier Noria <fxn@hashref.com>
* No need of instance variableDalibor Nasevic2011-03-021-3/+3
| | | | | | [#6502 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Deprecate the old mailer API that was not deprecated yet.José Valim2010-08-291-3/+0
|
* Ensure templates like template.html are found but still uses the proper ↵José Valim2010-08-261-0/+6
| | | | virtual path.
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-8/+8
| | | | 's/[ \t]*$//' -i {} \;)
* Reload action_methods in AbstractController after defining new method.Piotr Sarnacki2010-08-041-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 Kalderimis2010-07-241-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 TZInfoSantiago Pastorino2010-07-021-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é Valim2010-06-121-1/+1
| | | | as scope as in t('.subject')
* Adding inline attachment support to ActionMailerMikel Lindsaar2010-06-071-0/+17
|
* Use better assertion methods for testingNeeraj Singh2010-05-191-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 Lindsaar2010-05-021-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 methodMikel Lindsaar2010-05-021-0/+17
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* template_name and template_path should not be added to mail headers.José Valim2010-04-131-5/+5
|
* Fixing up attachment encoding specs to work with latest mail - and be correctMikel Lindsaar2010-03-281-2/+18
|
* Mail now correctly bundles up the charset into the content type fieldMikel Lindsaar2010-03-281-7/+7
|
* Improve performance of the rendering stack by freezing formats as a sign ↵José Valim2010-03-191-22/+36
| | | | that they shouldn't be further modified.
* Finish cleaning up rendering stack from views and move assigns evaluation to ↵José Valim2010-03-121-0/+2
| | | | controller (so plugins and/or controllers can overwrite just one method).
* Adding options to register observers and interceptors through ↵Mikel Lindsaar2010-02-221-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é Valim2010-02-191-21/+36
| | | | rendering with ActionMailer.
* Fixing actionmailer tests for CIMikel Lindsaar2010-02-061-1/+2
|
* Make AM test suite green.José Valim2010-02-011-2/+2
|
* Convert to class_attributeJeremy Kemper2010-02-011-14/+10
|
* ActionMailer should depend just on AbstractController.José Valim2010-01-291-16/+17
|
* Add a failing test case for render :layoutMikel Lindsaar2010-01-291-0/+15
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Added tests for rendering different template for new APIMikel Lindsaar2010-01-291-0/+14
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Rename 'defaults' class method to 'default' to reflect that it's a declarationJeremy Kemper2010-01-271-5/+5
|
* Fix time comparison. Mail#date returns DateTime not Time.Jeremy Kemper2010-01-271-1/+1
|
* Expected attachment encoding is binaryJeremy Kemper2010-01-271-2/+4
|
* Fixed bug on HTML only emails getting set to text/plainMikel Lindsaar2010-01-281-0/+18
|
* Tidy up tests and docs.José Valim and Mikel Lindsaar2010-01-261-18/+19
|
* Fixing up tests and docs to use defaults :from => 'name' instead of ↵Mikel Lindsaar2010-01-271-3/+3
| | | | defaults({:from => 'name'})
* Fixed up documentation to reflect code change and cleaned up tests of ↵Mikel Lindsaar2010-01-271-38/+39
| | | | spurious #deliver calls
* Fixed up being able to pass random headers in with headers, or mail. Also, ↵Mikel Lindsaar2010-01-271-5/+30
| | | | undeprecated headers(hash) as this works now too
* Make defaults accept a hash.José Valim and Mikel Lindsaar2010-01-261-42/+43
|
* Fixing up expectations in base_test.rbMikel Lindsaar2010-01-261-10/+10
|
* Implementing class level :defaults hash, instead of delivers_from et alMikel Lindsaar2010-01-261-3/+23
|
* Fix small typo.José Valim and Mikel Lindsaar2010-01-261-1/+1
|
* Merge branch 'master' of github.com:mikel/railsJosé Valim and Mikel Lindsaar2010-01-261-9/+14
|\
| * Refactor content type setting, added tests to ensure boundary exists on ↵José Valim and Mikel Lindsaar2010-01-261-9/+14
| | | | | | | | multipart and fixed typo
* | Remove old files, add some information to docs and improve test suite.José Valim and Mikel Lindsaar2010-01-261-0/+24
|/
* Got AM working with Mail yield on delivery_handler and updated testsJosé Valim and Mikel Lindsaar2010-01-251-0/+7
|
* Added delivery_handler method to mail and implemented in ActionMailer to ↵José Valim and Mikel Lindsaar2010-01-251-1/+6
| | | | deliver inside of instrumentation
* Added delivers_from.José Valim and Mikel Lindsaar2010-01-251-3/+6
|
* Add some view paths tests.José Valim and Mikel Lindsaar2010-01-251-23/+42
|