# frozen_string_literal: true module MailerHelper def htmlify_email(content) content.gsub!("\n\n", "

\n\n

") "

#{content.chomp}

".html_safe end end