class Rails::Conductor::ActionMailbox::InboundEmailsController

def create

def create
  inbound_email = create_inbound_email(new_mail)
  redirect_to main_app.rails_conductor_inbound_email_url(inbound_email)
end

def create_inbound_email(mail)

def create_inbound_email(mail)
  ActionMailbox::InboundEmail.create_and_extract_message_id!(mail.to_s)
end

def index

def index
  @inbound_emails = ActionMailbox::InboundEmail.order(created_at: :desc)
end

def mail_params

def mail_params
  params.require(:mail).permit(:from, :to, :cc, :bcc, :x_original_to, :in_reply_to, :subject, :body, attachments: [])
end

def new

def new
end

def new_mail

def new_mail
  Mail.new(mail_params.except(:attachments).to_h).tap do |mail|
    mail[:bcc]&.include_in_headers = true
    mail_params[:attachments].to_a.each do |attachment|
      mail.add_file(filename: attachment.original_filename, content: attachment.read)
    end
  end
end

def show

def show
  @inbound_email = ActionMailbox::InboundEmail.find(params[:id])
end