mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
744 B
28 lines
744 B
# frozen_string_literal: true
|
|
|
|
class SendSubmissionEmailController < ApplicationController
|
|
layout 'form'
|
|
|
|
skip_before_action :authenticate_user!
|
|
skip_before_action :verify_authenticity_token
|
|
|
|
def success; end
|
|
|
|
def create
|
|
@submitter =
|
|
if params[:template_slug]
|
|
Submitter.joins(submission: :template).find_by!(email: params[:email],
|
|
template: { slug: params[:template_slug] })
|
|
else
|
|
Submitter.find_by!(slug: params[:submitter_slug])
|
|
end
|
|
|
|
SubmitterMailer.documents_copy_email(@submitter).deliver_later!
|
|
|
|
respond_to do |f|
|
|
f.html { redirect_to success_send_submission_email_index_path }
|
|
f.json { head :ok }
|
|
end
|
|
end
|
|
end
|