class ActionMailbox::Base

def bounce_now_with(message)

Immediately sends the given +message+ and changes the inbound email's status to +:bounced+.
def bounce_now_with(message)
  inbound_email.bounced!
  message.deliver_now
end