Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add guide for Action Mailer Previews | Yuki Nishijima | 2015-02-08 | 1 | -0/+33 |
| | | | | [ci skip] | ||||
* | - Changed `IN` to `ON` in markdown renderer condition | Vipul A M | 2015-01-14 | 1 | -1/+1 |
| | | | | - Changed `IN` to `ON` in all note sentences in guides. | ||||
* | Un-inline if statement | Josh Cheek | 2014-12-29 | 1 | -1/+3 |
| | | | | | The single line was long enough that it rendered on two lines, causing the example to look like syntactically invalid code. | ||||
* | Fix bug in ActionMailer guide. | Dan Bernier | 2014-12-24 | 1 | -1/+1 |
| | | | | | When setting a mailer's default from address, you have to pass a hash with a `:from` key; you can't pass just an email address. | ||||
* | warn about reading guides in GitHub | Xavier Noria | 2014-12-23 | 1 | -0/+2 |
| | | | | References #18148. | ||||
* | [ci skip] fix description of url_for | yuuji.yaginuma | 2014-11-30 | 1 | -13/+1 |
| | |||||
* | Update docs to reflect changes to MailerGenerator. | Guo Xiang Tan | 2014-11-25 | 1 | -11/+26 |
| | |||||
* | [ci skip] Fix code snippet display in Action Mailer Basics guide. | Juanito Fatas | 2014-09-16 | 1 | -2/+1 |
| | |||||
* | [ci skip] Clarify Action Mailer/Active Job usage note | Logan Hasson | 2014-08-21 | 1 | -5/+5 |
| | |||||
* | Updated rdoc / guides / release notes related to ActiveJob / ActionMailer | Cristian Bica | 2014-08-20 | 1 | -4/+28 |
| | |||||
* | Deprecate `*_path` methods in mailers | @schneems and @sgrif | 2014-07-30 | 1 | -0/+16 |
| | | | | | | | | | | | Email does not support relative links since there is no implicit host. Therefore all links inside of emails must be fully qualified URLs. All path helpers are now deprecated. When removed, the error will give early indication to developers to use `*_url` methods instead. Currently if a developer uses a `*_path` helper, their tests and `mail_view` will not catch the mistake. The only way to see the error is by sending emails in production. Preventing sending out emails with non-working path's is the desired end goal of this PR. Currently path helpers are mixed-in to controllers (the ActionMailer::Base acts as a controller). All `*_url` and `*_path` helpers are made available through the same module. This PR separates this behavior into two modules so we can extend the `*_path` methods to add a Deprecation to them. Once deprecated we can use this same area to raise a NoMethodError and add an informative message directing the developer to use `*_url` instead. The module with warnings is only mixed in when a controller returns false from the newly added `supports_relative_path?`. Paired @sgrif & @schneems | ||||
* | fix bug in email with name example code | Sam DeCesare | 2014-06-11 | 1 | -1/+1 |
| | | | | | | The display name in the email "to" field needs to be quoted otherwise your email-sending service will fail when trying to deliver mail to user's with commas in their name (i.e. John Smith, M.D.). | ||||
* | [ci skip] Refine Action Mailer guide. | Juanito Fatas | 2014-06-11 | 1 | -10/+19 |
| | | | | | | | | | | | | | | | | | * Wrap 80 words if possible. * Make attachment hash options more readable. (L239-L243) Before: ![screenshot 2014-06-11 02 59 54](https://cloud.githubusercontent.com/assets/1000669/3235432/a91d0464-f0d2-11e3-9e4a-6af2b2a83f1a.png) After: ![screenshot 2014-06-11 02 59 36](https://cloud.githubusercontent.com/assets/1000669/3235428/a47b28dc-f0d2-11e3-806c-cfaedd3f15df.png) * L619 Wrap "location" in code: `"location"`. * L628 Use actual section name. * L697 Remove unnecessary `./` when refer to other guide. | ||||
* | Use generated binstubs in guides examples. | Josef Šimánek | 2014-05-20 | 1 | -3/+3 |
| | | | | [ci skip] | ||||
* | Merge pull request #13728 from semenyukdmitriy/master | Yves Senn | 2014-01-22 | 1 | -1/+1 |
|\ | | | | | Added missing `file` delivery method to the Configuration Guide | ||||
| * | [ci skip] Added missing `file` delivery method | Semenyuk Dmitriy | 2014-01-22 | 1 | -1/+1 |
| | | |||||
* | | docs should say `email` not `Email`. [ci skip] | Yves Senn | 2014-01-20 | 1 | -2/+2 |
| | | |||||
* | | docs, hyperlink the `Mail gem` in Action Mailer guide. [ci skip] | Yves Senn | 2014-01-20 | 1 | -2/+2 |
|/ | |||||
* | Minor align BR tags with HTML void - with reference to the generators code ↵ | AvnerCohen | 2013-10-09 | 1 | -1/+1 |
| | | | | change - https://github.com/rails/rails/commit/f038d4cc5fe1ac21f92c7e32c61ff85a0c816f3f | ||||
* | Use Ruby on Rails Coding Conventions for code examples in the guides | Paul Nikitochkin | 2013-09-06 | 1 | -14/+14 |
| | | | | | | | | * Indent after private/protected * Ruby >= 1.9 syntax for hashes * Prefer method { do_stuff } instead of method{do_stuff} for single-line blocks. [ci skip] | ||||
* | AM Guide: Should be "different formats". | Peter Jaros | 2013-07-24 | 1 | -1/+1 |
| | |||||
* | Using preferred find_by syntax in guides | Cristian Planas | 2013-07-01 | 1 | -1/+1 |
| | |||||
* | Remove a duplicated section [ci skip] | Robin Dupret | 2013-06-29 | 1 | -20/+5 |
| | | | | | | Attachments were previously covered so remove the useless part. Just move a note about multipart headers set when the mail method is triggered to the kept section. | ||||
* | correct no-replay@example.com to no-reply@example.com | Kyle Fritz | 2013-05-29 | 1 | -1/+1 |
| | |||||
* | Remove double spaces in guides | Sunny Ripert | 2013-05-28 | 1 | -1/+1 |
| | |||||
* | Consistent use of one space only after punctuation | Sunny Ripert | 2013-05-28 | 1 | -1/+1 |
| | |||||
* | Make guide description more concise | Fiona Tay | 2013-04-21 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2013-04-11 | 1 | -15/+10 |
|\ | | | | | | | | | Conflicts: guides/source/action_mailer_basics.md | ||||
| * | Proofreading tweaks to the Mailer guide | Jonathan Roes | 2013-04-01 | 1 | -15/+15 |
| | | |||||
* | | get the Action Mailer guide ready. [ci skip] | Yves Senn | 2013-04-09 | 1 | -117/+238 |
|/ | |||||
* | move mailer testing examples into the testing guide. | Yves Senn | 2013-03-25 | 1 | -25/+2 |
| | | | | | | | | Closes #9325. I adjusted the example and the description in the testing guide and simply linked from the mailer to the testing guide. This way we don't have to maintain two separate places. | ||||
* | copy edits [ci skip] | Vijay Dev | 2013-03-10 | 1 | -3/+3 |
| | |||||
* | Adding a note for :body option in `mail` method. | Fabrizio Regini | 2013-03-08 | 1 | -0/+13 |
| | |||||
* | Merge pull request #9359 from justinwb/master | Carlos Antonio da Silva | 2013-02-27 | 1 | -1/+0 |
|\ | | | | | Removed template_root as a configuration option | ||||
| * | Removed template_root as a configuration option | Justin Bingham | 2013-02-21 | 1 | -1/+0 |
| | | | | | | Removed template root from actionmailer configuration options as it seems to have been pulled out completely in favor of explicit definition via template_path / template_name. | ||||
* | | Update guide doc to use migration shortcuts | Qihuan Piao | 2013-02-25 | 1 | -1/+1 |
| | | |||||
* | | Wrap `around_action` word with <code> tag | Qihuan Piao | 2013-02-25 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #9084 from senny/document_am_delivieries_reset | José Valim | 2013-01-26 | 1 | -0/+2 |
|\ | | | | | document the behavior of `ActionMailer::Base.delivieries` in tests | ||||
| * | document the behavior of `ActionMailer::Base.delivieries` in tests | Yves Senn | 2013-01-26 | 1 | -0/+2 |
| | | | | | | | | thanks @danielpuglisi | ||||
* | | document how to create custom rails environments | Yves Senn | 2013-01-21 | 1 | -1/+1 |
| | | |||||
* | | s/it's/its/ | Akira Matsuda | 2013-01-18 | 1 | -1/+1 |
| | | | | | | | | [ci skip] | ||||
* | | spelling correction for AM interceptors | Yves Senn | 2013-01-17 | 1 | -1/+1 |
|/ | |||||
* | document Intercepters in ActionMailer guide | Yves Senn | 2013-01-16 | 1 | -0/+20 |
| | |||||
* | Introduce ./bin for your app's executables: bin/bundle, bin/rails, bin/rake. ↵ | Jeremy Kemper | 2013-01-06 | 1 | -1/+1 |
| | | | | Executable scripts are versioned code like the rest of your app. To generate a stub for a bundled gem: 'bundle binstubs unicorn' and 'git add bin/unicorn' | ||||
* | Move background jobs to the 'jobs' branch until fully baked. Not shipping ↵ | Jeremy Kemper | 2012-12-21 | 1 | -23/+0 |
| | | | | with Rails 4.0. | ||||
* | `config.action_mailer.async` is no longer used | Andy Lindeman | 2012-12-10 | 1 | -1/+0 |
| | |||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-12-08 | 1 | -5/+5 |
|\ | |||||
| * | Remove reference to background queue in mailer guide. | Steve Klabnik | 2012-12-07 | 1 | -2/+0 |
| | | | | | | | | | | Mailers are always async now, and we already discuss queueing lower down in the guide. | ||||
| * | Remove references to Rails versions. | Steve Klabnik | 2012-12-07 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | There's no reason for guides to reference old behaviors. They should be current as of the versions of Rails that they ship with, and including older information just clutters thing. I discussed this change with @fxn and he agrees. | ||||
| * | Punctuation, capitalization, grammar fixes in rails guides | Katie Oldaker | 2012-12-07 | 1 | -0/+4 |
| | |