1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-12-01 05:43:04 +00:00

Message body parts should be a sub body (#376)

هذا الالتزام موجود في:
Will Power
2023-03-13 13:26:40 +00:00
ملتزم من قبل Charlie Smurthwaite
الأصل 9b1ed1e7e1
التزام d0db1345a2

عرض الملف

@@ -160,17 +160,15 @@ class OutgoingMessagePrototype
mail.sender = @sender
mail.subject = @subject
mail.reply_to = @reply_to
if @html_body.blank? && attachments.empty?
mail.body = @plain_body
else
mail.part :content_type => "multipart/alternative" do |p|
if !@plain_body.blank?
mail.text_part = Mail::Part.new
mail.text_part.body = @plain_body
p.text_part = Mail::Part.new
p.text_part.body = @plain_body
end
if !@html_body.blank?
mail.html_part = Mail::Part.new
mail.html_part.content_type = "text/html; charset=UTF-8"
mail.html_part.body = @html_body
p.html_part = Mail::Part.new
p.html_part.content_type = "text/html; charset=UTF-8"
p.html_part.body = @html_body
end
end
attachments.each do |attachment|