c6ebe440da
Looks like I was accidentally using #part which was adding an extra empty Mime section
13 lines
439 B
Ruby
13 lines
439 B
Ruby
# Read about interceptors in http://guides.rubyonrails.org/action_mailer_basics.html#intercepting-emails
|
|
class EmailTemplateInterceptor
|
|
include Gitlab::CurrentSettings
|
|
|
|
def self.delivering_email(message)
|
|
# Remove HTML part if HTML emails are disabled.
|
|
unless current_application_settings.html_emails_enabled
|
|
message.parts.delete_if do |part|
|
|
part.content_type.start_with?('text/html')
|
|
end
|
|
end
|
|
end
|
|
end
|