77985826d9
* Add email_header_and_footer_enabled flag to appearances table * Set email_header_and_footer_enabled default value to false * Add checkbox to appearance to toggle show header and footer in emails * Add email_header_and_footer_enabled to allowed params in controller * Add header and footer messages to the html and text email layouts * Remove the color styling for emails header and footer * Add empty_mailer layout for emails without layout, to have the header and footer applied
27 lines
702 B
Ruby
27 lines
702 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EmailRejectionMailer < BaseMailer
|
|
layout 'empty_mailer'
|
|
|
|
helper EmailsHelper
|
|
|
|
def rejection(reason, original_raw, can_retry = false)
|
|
@reason = reason
|
|
@original_message = Mail::Message.new(original_raw)
|
|
|
|
return unless @original_message.from
|
|
|
|
headers = {
|
|
to: @original_message.from,
|
|
subject: "[Rejected] #{@original_message.subject}"
|
|
}
|
|
|
|
headers['Message-ID'] = "<#{SecureRandom.hex}@#{Gitlab.config.gitlab.host}>"
|
|
headers['In-Reply-To'] = @original_message.message_id
|
|
headers['References'] = @original_message.message_id
|
|
|
|
headers['Reply-To'] = @original_message.to.first if can_retry
|
|
|
|
mail(headers)
|
|
end
|
|
end
|