mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add a test helper for creating and routing an inbound email
This commit is contained in:
parent
dd593b98b5
commit
704179251f
3 changed files with 10 additions and 2 deletions
|
@ -2,6 +2,6 @@ class ActionMailbox::RoutingJob < ActiveJob::Base
|
|||
queue_as :action_mailbox_routing
|
||||
|
||||
def perform(inbound_email)
|
||||
ApplicationMailbox.route inbound_email
|
||||
inbound_email.route
|
||||
end
|
||||
end
|
||||
|
|
|
@ -8,4 +8,8 @@ module ActionMailbox::InboundEmail::Routable
|
|||
def route_later
|
||||
ActionMailbox::RoutingJob.perform_later self
|
||||
end
|
||||
|
||||
def route
|
||||
ApplicationMailbox.route self
|
||||
end
|
||||
end
|
||||
|
|
|
@ -18,5 +18,9 @@ module ActionMailbox
|
|||
ActionDispatch::Http::UploadedFile.new(tempfile: io, filename: filename, type: 'message/rfc822'),
|
||||
status: status
|
||||
end
|
||||
|
||||
def receive_inbound_email_from_mail(**kwargs)
|
||||
create_inbound_email_from_mail(**kwargs).tap(&:route)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue