| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
Adds information on using email observer classes with Action Mailer.
Intercepting Emails section is changed to "Intercepting and Observing
Emails", with a sub-section on each topic.
Also includes slight reworking of the Intercepting Emails summary to flow
with the new structure.
|
|
|
|
| |
Add backticks to code
|
| |
|
|\
| |
| |
| |
| |
| | |
ZASMan/update_action_mailer_docs_custom_view_paths
Add note for custom mailer view paths in action mailer guide. [ci skip]
|
|/
|
|
|
|
|
|
|
|
| |
Adds stuff
Fixes a typo
Integrates changes
Adds link to append_view_path in actionmailer guide.
|
|\
| |
| |
| |
| | |
albertoalmagro/albertoalmagro/prefer-rails-command-over-bin-rails
Prefer rails command over bin/rails
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
As discussed in #33203 rails command already looks for, and runs,
bin/rails if it is present.
We were mixing recommendations within guides and USAGE guidelines,
in some files we recommended using rails, in others bin/rails and
in some cases we even had both options mixed together.
|
|/
|
|
|
| |
http links will be redirected to the https version, but still better to
just directly link to the https version.
|
| |
|
|
|
|
|
|
|
| |
[ci skip] A regular expression was used to find a lot of missing Oxford
commas and add them. The regular expression was as follows.
", ([a-zA-Z0-9.\`:'\"]+ ){1,6}(or|and) "
|
|\
| |
| |
| | |
[ci skip] Update Action Mailer Documentation
|
| |
| |
| | |
Remove superfluous repetition and place them in a common section. [ci skip]
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
I had to do some I was unsure what kind of caching it was performing, and had to do some Googling. Also improves the wording.
|
| |
|
| |
|
|
|
|
|
|
| |
`gmail` --> `Gmail`
[ci skip]
|
| |
|
|
|
|
|
| |
https://github.com/rails/rails-ujs is merged into actionview in favor of https://github.com/rails/rails/pull/28098.
[skip ci]
|
|
|
|
| |
[ci skip]
|
| |
|
| |
|
|
|
|
| |
Follow up to 79a5ea9eadb4d43b62afacedc0706cbe88c54496
|
|
|
|
| |
Follow up to #24436
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
SSL_set_verify(3) explains:
SSL_VERIFY_FAIL_IF_NO_PEER_CERT
Server mode: if the client did not return a certificate, the TLS/SSL
handshake is immediately terminated with a "handshake failure" alert.
This flag must
be used together with SSL_VERIFY_PEER.
Client mode: ignored
SSL_VERIFY_CLIENT_ONCE
Server mode: only request a client certificate on the initial TLS/SSL
handshake. Do not ask for a client certificate again in case of a
renegotiation.
This flag must be used together with SSL_VERIFY_PEER.
Client mode: ignored
The SMTP connection here uses a OpenSSL socket in client mode,
suggesting invalid/ignored flags is rather misleading.
|
|
|
|
| |
Follow up to 625baa69d14881ac49ba2e5c7d9cac4b222d7022
|
| |
|
|\
| |
| | |
Change x-gzip to gzip in docs [ci skip]
|
| |
| |
| |
| | |
For more information about GNU zip mime type please check IETF's web site [RFC6713](http://tools.ietf.org/html/rfc6713) or [IANA](http://www.iana.org/assignments/media-types/media-types.xhtml#application)
|
|/ |
|
|
|
|
| |
Still more to do. Please assist!
|
|
|
| |
`smpt.gmail.com` should be `smtp.gmail.com`
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
increased its
security measures so using the example for Gmail will return a “Password Incorrect” error,
and you will receive an email from Google that they blocked a sign-in attempt. You can change
your Gmail settings or use another ESP.
I discovered this when I was testing a simple mailer example app and was just going to
use my personal Gmail account for the test. I think it would be best to note this change
since now Gmail may not be the best option for a quick test. I hope this saves time for other Rails
developers. The Gmail example does show a good example of how to configure the smpt settings.
|
| |
|
|
|
|
| |
[ci skip]
|
|\
| |
| | |
Add openssl_verify_mode and sync other smtp_settings with API docs [ci skip]
|
| | |
|
|/ |
|
|\ |
|
| | |
|
|\ \
| |/
|/|
| | |
Added note about non-GET links getting converted to GET links in mailer Added note about non-GET links getting converted to GET links in mailer templates [ci skip]
|
|/
|
|
| |
templates [ci skip]
|
|
|
|
| |
[ci skip]
|
|
|
|
| |
- Changed `IN` to `ON` in all note sentences in guides.
|
|
|
|
|
| |
The single line was long enough that it rendered on two lines,
causing the example to look like syntactically invalid code.
|
|
|
|
|
| |
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.
|