diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2012-12-07 23:22:51 -0800 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2012-12-07 23:22:51 -0800 |
commit | 350b122ecc86584cdee6aa39ed2772f9d49e68d2 (patch) | |
tree | a3b1c9d45c2bdfd32e6cf9877fede5c3b7aab703 /guides | |
parent | ed78770b1a13788a5d3fcae484f34654de580bd5 (diff) | |
download | rails-350b122ecc86584cdee6aa39ed2772f9d49e68d2.tar.gz rails-350b122ecc86584cdee6aa39ed2772f9d49e68d2.tar.bz2 rails-350b122ecc86584cdee6aa39ed2772f9d49e68d2.zip |
Remove reference to background queue in mailer guide.
Mailers are always async now, and we already discuss
queueing lower down in the guide.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_mailer_basics.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index 9411ac7325..b2ccc2d82c 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -149,8 +149,6 @@ This provides a much simpler implementation that does not require the registerin The method `welcome_email` returns a `Mail::Message` object which can then just be told `deliver` to send itself out. -WARNING: Sending out an email should only take a fraction of a second. If you are planning on sending out many emails, or you have a slow domain resolution service, you might want to investigate using a background process like Delayed Job. - ### Auto encoding header values Action Mailer now handles the auto encoding of multibyte characters inside of headers and bodies. |