the invite emailer is not multipart...sigh

This commit is contained in:
Maxwell Salzberg 2011-12-30 20:53:20 -08:00
parent 6ab03d33b4
commit 5bbfebdba9

View file

@ -20,6 +20,9 @@ module Messagebus
if message.multipart?
msg[:plaintextBody] = message.text_part.body.to_s if message.text_part
msg[:htmlBody] = message.html_part.body.to_s if message.html_part
else
msg[:plaintextBody] = message.body.to_s
msg[:htmlBody] = message.body.to_s
end
begin