instance method
bounce_with
Ruby on Rails 7.0.10
Since v6.0.6Signature
bounce_with(message)
Enqueues the given message for delivery and changes the inbound email’s status to :bounced.
Parameters
-
messagereq
Source
# File actionmailbox/lib/action_mailbox/base.rb, line 102
def bounce_with(message)
inbound_email.bounced!
message.deliver_later
end
Defined in actionmailbox/lib/action_mailbox/base.rb line 102
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionMailbox::Base