From c6ebe440dad6932f65254f058a5a291973526f99 Mon Sep 17 00:00:00 2001 From: Ruben Davila Date: Mon, 9 Jan 2017 13:01:07 -0500 Subject: [PATCH] Use #parts instead of #part to read all the parts of the Message. Looks like I was accidentally using #part which was adding an extra empty Mime section --- lib/email_template_interceptor.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/email_template_interceptor.rb b/lib/email_template_interceptor.rb index fb04a7824b8..63f9f8d7a5a 100644 --- a/lib/email_template_interceptor.rb +++ b/lib/email_template_interceptor.rb @@ -5,8 +5,8 @@ class EmailTemplateInterceptor def self.delivering_email(message) # Remove HTML part if HTML emails are disabled. unless current_application_settings.html_emails_enabled - message.part.delete_if do |part| - part.content_type.try(:start_with?, 'text/html') + message.parts.delete_if do |part| + part.content_type.start_with?('text/html') end end end