html_content with attachment in django-post_office
I get strange bug with attachment in django-post-office (at least, it's encountered in version 2.0.8 and lower): when the mail is sent, which consist of html-content with attachment (of any format), the mail is come, but without attachment.
I used next package version:
django==1.10.7 (and lower) django-post-office==2.0.8 (and lower)
In more detail, the behavior of django-post-office of the specified version and the working of the mail.send()
method can be described as follows:
- When the mail is sent with simple content, using
message
parameter, and with attachment - it works correctly, i. e. I get mail with attachment. - When the mail...