aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mail_service_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Move old tests to a specific folder and add some delivery method tests.José Valim and Mikel Lindsaar2010-01-241-1192/+0
|
* Handle some TODOs and deprecations.José Valim and Mikel Lindsaar2010-01-241-2/+4
|
* Finish cleaning up delivery methods implementation.José Valim and Mikel Lindsaar2010-01-241-11/+11
|
* Add new class delivery method API.José Valim and Mikel Lindsaar2010-01-241-76/+72
|
* Delegated ActionMailer::Base.deliveries to Mail.deliveries, added callback ↵José Valim and Mikel Lindsaar2010-01-241-3/+3
| | | | support in Mail to call ActionMailer on delivery, moved deliver to deprecated API in preparation for new API
* Add basic template rendering to new DSL.José Valim and Mikel Lindsaar2010-01-221-9/+0
|
* Moved deprecated_body.rb to deprecatead_api.rbJosé Valim and Mikel Lindsaar2010-01-221-12/+0
|
* Updating deprecated API to sanitize old style attachments hash to work with ↵José Valim and Mikel Lindsaar2010-01-221-1/+1
| | | | new mail.attachments method
* Adding tests for attachments['blah.rb'] = {} et alJosé Valim and Mikel Lindsaar2010-01-211-0/+1
|
* Fixing failing test on sendmail expectationMikel Lindsaar2010-01-201-1/+1
|
* Get all tests passing.José Valim2010-01-191-7/+2
|
* Merge branch 'master' of git://github.com/rails/rails into railsMikel Lindsaar2010-01-191-6/+4
|\
| * Bring render_message back for 2.3 compatibility.José Valim2010-01-191-2/+2
| |
| * Bring body(Hash) behavior back.José Valim2010-01-191-3/+1
| |
| * mail.create_path returns an array test fixed [#3712 status:resolved]Santiago Pastorino2010-01-171-1/+1
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | Fixing up base to refactor settingsMikel Lindsaar2010-01-171-4/+4
| |
* | Migrated over to Mail doing delivery.Mikel Lindsaar2010-01-161-8/+4
|/
* Add subscriber to ActionMailer.José Valim2010-01-141-34/+0
|
* Return-Path per RFC needs '<' and '>' around the addr_specMikel Lindsaar2010-01-081-1/+6
|
* Liberalize picky testJeremy Kemper2010-01-071-1/+1
|
* Updating to Mail 1.5.0, including default values for all Message#field_name ↵Mikel Lindsaar2010-01-021-44/+44
| | | | methods, can access field objects by calling Message#[:field_name]
* Adding default 8bit encoding if the body has non usascii in itMikel Lindsaar2009-12-281-1/+1
|
* Moved sort_parts into Mail, updated mail requirement to 1.4.2Mikel Lindsaar2009-12-281-7/+5
|
* Getting rid of some warnings in AM suite.José Valim2009-12-271-3/+3
|
* Merge Mail with latest Rails and move mail gem to Gemfile.José Valim2009-12-271-3/+5
|\
| * Make ActionMailer::Base inherit from AbstractController::BaseJosé Valim2009-12-221-3/+5
| | | | | | | | Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local>
* | Changing body to use :to_s instead of :decoded... better use caseMikel Lindsaar2009-12-271-12/+12
| |
* | Updating actionmailer to call :to_s on all field values instead of decodedMikel Lindsaar2009-12-271-8/+8
| |
* | Fixes for working with 1.9.1-headMikel Lindsaar2009-12-171-2/+2
| |
* | Merge branch 'rails'Mikel Lindsaar2009-12-171-0/+34
|\| | | | | | | | | | | Conflicts: actionmailer/lib/action_mailer.rb actionmailer/lib/action_mailer/delivery_method/smtp.rb
| * avoid generating invalid SMTP commands in ruby pre 1.9Michael Koziarski2009-11-281-0/+34
| | | | | | | | | | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> Conflicts: actionmailer/lib/action_mailer/base.rb
* | Merge branch 'master' of git://github.com/rails/rails into rails_masterMikel Lindsaar2009-11-241-1/+1
|\|
| * Change mailer subjects lookup.José Valim2009-11-091-1/+1
| |
* | Fixed up incompatible encoding problem for Ruby 1.9 in test suiteMikel Lindsaar2009-11-231-3/+9
| |
* | Deprecating attachment :body => 'string' in favour of attachment :data => ↵Mikel Lindsaar2009-11-231-5/+5
| | | | | | | | 'string'
* | 131 tests, 309 assertions, 0 failures, 0 errorsMikel Lindsaar2009-11-221-29/+37
| |
* | Updating tests for Mail gemMikel Lindsaar2009-11-221-1/+1
| |
* | 131 tests, 266 assertions, 9 failures, 6 errorsMikel Lindsaar2009-11-211-6/+6
| |
* | Down to 13 failures, 14 errorsMikel Lindsaar2009-11-201-6/+13
| |
* | Down to 30 failures totalMikel Lindsaar2009-11-201-36/+82
| |
* | More updates... 45 errors left to get it working with Mail gemMikel Lindsaar2009-11-201-43/+57
| |
* | Starting again on actionmailer integration with mailMikel Lindsaar2009-11-121-37/+32
|/
* Use I18n on ActionMailer subjects by default.José Valim2009-11-011-0/+15
|
* Make tests run without deprecation warning (just one left).José Valim2009-11-011-60/+77
|
* Another refactoring on AM. body is deprecated, use render instead.José Valim2009-11-011-6/+2
|
* Remove ActionMailer helpers and rely on AbstractController one.José Valim2009-11-011-3/+7
|
* abstract all of the ActionMailer delivery methods into their own classes. ↵Matthew Rudy Jacobs2009-11-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | thereby the following are equivalent ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.delivery_method = ActionMailer::DeliveryMethod::Smtp we could equally set our own custom object as long as it provides the instance method :perform_delivery(mail) eg. class MySmsDeliveryMethod def perform_delivery(mail) Sms.send(mail['to'], mail['body']) end end MySmsMailer.delivery_method = MySmsDeliveryMethod.new Signed-off-by: José Valim <jose.valim@gmail.com>
* Get rid of parenthesize argument warningsPratik Naik2009-08-091-5/+5
|
* Adds a :file delivery_method to save email to a file on diskEric Davis2009-08-081-0/+12
| | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> [#2438 state:committed]
* Default sent_on time to now in ActionMailerMatt Duncan2009-08-081-2/+3
| | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> [#2607 state:committed]