diff options
author | George Claghorn <george@basecamp.com> | 2019-01-09 22:21:57 -0500 |
---|---|---|
committer | George Claghorn <george@basecamp.com> | 2019-01-09 22:23:51 -0500 |
commit | 7aaf9b8076704426c5e3f20bc3018c398f58dc88 (patch) | |
tree | 3b08414afbf48aa158d8299b5476bf8074268fb9 /actionmailbox | |
parent | 2787474ae30c753afadb27949d9a12daf7f89087 (diff) | |
download | rails-7aaf9b8076704426c5e3f20bc3018c398f58dc88.tar.gz rails-7aaf9b8076704426c5e3f20bc3018c398f58dc88.tar.bz2 rails-7aaf9b8076704426c5e3f20bc3018c398f58dc88.zip |
Tweak Postmark ingress docs [ci skip]
Diffstat (limited to 'actionmailbox')
-rw-r--r-- | actionmailbox/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actionmailbox/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb b/actionmailbox/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb index ec4e0da5ec..309085c82a 100644 --- a/actionmailbox/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb +++ b/actionmailbox/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module ActionMailbox - # Ingests inbound emails from Postmark. Requires +RawEmail+ parameter containing a full RFC 822 message. + # Ingests inbound emails from Postmark. Requires a +RawEmail+ parameter containing a full RFC 822 message. # # Authenticates requests using HTTP basic access authentication. The username is always +actionmailbox+, and the # password is read from the application's encrypted credentials or an environment variable. See the Usage section below. @@ -35,10 +35,10 @@ module ActionMailbox # # Alternatively, provide the password in the +RAILS_INBOUND_EMAIL_PASSWORD+ environment variable. # - # 3. {Configure Postmark inbound webhook}[https://postmarkapp.com/manual#configure-your-inbound-webhook-url] - # to forward inbound emails to +/rails/action_mailbox/postmark/inbound_emails+ with the username +actionmailbox+ and - # the password you previously generated. If your application lived at <tt>https://example.com</tt>, you would - # configure Postmark with the following fully-qualified URL: + # 3. {Configure Postmark}[https://postmarkapp.com/manual#configure-your-inbound-webhook-url] to forward inbound emails + # to +/rails/action_mailbox/postmark/inbound_emails+ with the username +actionmailbox+ and the password you + # previously generated. If your application lived at <tt>https://example.com</tt>, you would configure your + # Postmark inbound webhook with the following fully-qualified URL: # # https://actionmailbox:PASSWORD@example.com/rails/action_mailbox/postmark/inbound_emails # |