Flag plain-text part of the email as being plain-text
This commit is contained in:
parent
55ed2dc319
commit
018f7bef7a
1 changed files with 1 additions and 1 deletions
2
vendor/regidesk/regidesk/views.py
vendored
2
vendor/regidesk/regidesk/views.py
vendored
|
@ -236,7 +236,7 @@ def boarding_send(request):
|
||||||
bpass.from_address,
|
bpass.from_address,
|
||||||
[bpass.to_address,],
|
[bpass.to_address,],
|
||||||
)
|
)
|
||||||
msg.content_subtype="html"
|
msg.content_subtype="plain"
|
||||||
msg.mixed_subtype="related"
|
msg.mixed_subtype="related"
|
||||||
if bpass.html_body:
|
if bpass.html_body:
|
||||||
msg.attach_alternative(bpass.html_body, "text/html")
|
msg.attach_alternative(bpass.html_body, "text/html")
|
||||||
|
|
Loading…
Reference in a new issue