class Rails::Conductor::ActionMailbox::InboundEmailsController

def new_mail

def new_mail
  Mail.new(params.require(:mail).permit(:from, :to, :cc, :bcc, :x_original_to, :in_reply_to, :subject, :body).to_h).tap do |mail|
    mail[:bcc]&.include_in_headers = true
    params[:mail][:attachments].to_a.each do |attachment|
      mail.add_file(filename: attachment.original_filename, content: attachment.read)
    end
  end
end