I am using Django 1.8.7 and Django-post-office to send mails with attachment (for instance, one pdf file "test.pdf").
1) Strangely when a mail is sent with an attachment and an HTML_CONTENT (eg "Hello World"), the mail is empty, except the file which is correctly attached. This HTML_CONTENT does not contain html syntax (for testing purpose, such as <strong> </strong>), to keep it very simple.
2) When the mail is sent with same attachment and a (simple) CONTENT (eg "Hello World"), the mail is correctly rendered, with the file correctly attached
3) when the mail is sent with no attachment and an HTML_CONTENT (eg "Hello World"), the mail is correctly rendered (ie, mail is not empty).
So pb is that it is not possible to send mails with attachements and html_content : mail is empty (but file is correctly attached).
Has someone already encountered this behaviour with django-post-office ? Thks.