aboutsummaryrefslogblamecommitdiffstats
path: root/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb
blob: 059af0c30219cd0461ba49296f2a839ecc45b700 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                             
                                                                                                 
           
                                                                          





          
                                                                  








                                                                         
                                                                                                      


                                  
                                                      
                                                                                                

       
# frozen_string_literal: true

class Rails::Conductor::ActionMailbox::InboundEmailsController < Rails::Conductor::BaseController
  def index
    @inbound_emails = ActionMailbox::InboundEmail.order(created_at: :desc)
  end

  def new
  end

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

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

  private
    def new_mail
      Mail.new params.require(:mail).permit(:from, :to, :cc, :bcc, :in_reply_to, :subject, :body).to_h
    end

    def create_inbound_email(mail)
      ActionMailbox::InboundEmail.create! raw_email: \
        { io: StringIO.new(mail.to_s), filename: 'inbound.eml', content_type: 'message/rfc822' }
    end
end