diff options
author | Tomek Maszkowski <tomek@wildbit.com> | 2018-12-31 18:16:44 -0500 |
---|---|---|
committer | Tomek Maszkowski <tomek@wildbit.com> | 2019-01-09 18:00:27 -0500 |
commit | b77d2d9a032b64c7819bf950194c715a3404da37 (patch) | |
tree | 6449f6a6280a1ba883fe373fcfe6877302c319a2 /actionmailbox/config | |
parent | ea65d92f1924648e72f93bb0e8e5fc62a56d0bac (diff) | |
download | rails-b77d2d9a032b64c7819bf950194c715a3404da37.tar.gz rails-b77d2d9a032b64c7819bf950194c715a3404da37.tar.bz2 rails-b77d2d9a032b64c7819bf950194c715a3404da37.zip |
Added Postmark ingress support
Diffstat (limited to 'actionmailbox/config')
-rw-r--r-- | actionmailbox/config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionmailbox/config/routes.rb b/actionmailbox/config/routes.rb index f1bc9847f5..7aa230fdff 100644 --- a/actionmailbox/config/routes.rb +++ b/actionmailbox/config/routes.rb @@ -5,6 +5,7 @@ Rails.application.routes.draw do post "/amazon/inbound_emails" => "amazon/inbound_emails#create", as: :rails_amazon_inbound_emails post "/mandrill/inbound_emails" => "mandrill/inbound_emails#create", as: :rails_mandrill_inbound_emails post "/postfix/inbound_emails" => "postfix/inbound_emails#create", as: :rails_postfix_inbound_emails + post "/postmark/inbound_emails" => "postmark/inbound_emails#create", as: :rails_postmark_inbound_emails post "/sendgrid/inbound_emails" => "sendgrid/inbound_emails#create", as: :rails_sendgrid_inbound_emails # Mailgun requires that a webhook's URL end in 'mime' for it to receive the raw contents of emails. |