Skip to content

Commit

Permalink
add space after the pre
Browse files Browse the repository at this point in the history
  • Loading branch information
jfqd committed Nov 1, 2019
1 parent a13ad8d commit d6e6c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mail_handler_patch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def email_details
details << "To: " + @email[:to].formatted.join(', ') + "\n"
details << "Cc: " + @email[:cc].formatted.join(', ') + "\n" if !@email.cc.nil?
details << "Date: " + @email[:date].to_s + "\n"
"<pre>\n" + Mail::Encodings.unquote_and_convert_to(details, 'utf-8') + "</pre>"
"<pre>\n" + Mail::Encodings.unquote_and_convert_to(details, 'utf-8') + "</pre>\n\n"
end

end # module InstanceMethods
Expand Down

0 comments on commit d6e6c48

Please sign in to comment.