blob: b856eb5b9445c3e9989dd27ecc5a1544bf3ff563 (
plain) (
tree)
|
|
class ActionMailbox::Ingresses::Sendgrid::InboundEmailsController < ActionMailbox::BaseController
before_action :authenticate_by_password
def create
ActionMailbox::InboundEmail.create_and_extract_message_id! params.require(:email)
end
end
|