the invite emailer is not multipart...sigh
This commit is contained in:
parent
6ab03d33b4
commit
5bbfebdba9
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue