python-postmark
python-postmark copied to clipboard
Postmark library for Python 2.6 and greater
Hello, I try to send local PDF files but isn't work, ``` with open(src_pdf, 'rb') as f: pdf_file = f.read() attachments = [ ("my_pdf_file.pdf", pdf_file, 'application/pdf') ] pm = PMMail(...
If I send three messages, but one of the messages doesn't have a recipient, then at this stage the pm_messages list will have only two elements. How is user-code supposed...
Postmark added a new field TemplateAlias which can be used instead of TemplateId to reference templates across servers. https://postmarkapp.com/developer/api/templates-api
If I send message with subject wrapped into ugettext_lazy, PostMark backend falls down with the following error: ``` ... File "/usr/local/lib/python2.7/site-packages/postmark/core.py", line 44, in default return super(PMJSONEncoder, self).default(o) File "/usr/local/lib/python2.7/site-packages/simplejson/encoder.py",...
http://developer.postmarkapp.com/developer-opens.html Working on a PR at the moment.
The Django backend has to do this all by itself right now: https://github.com/themartorana/python-postmark/blob/master/postmark/django_backend.py#L58
I have a bunch of `hard bounced` emails in my postmark admin. I am not able to retrieve those using your `PMBounceManager.get_all()` api. Let me reproduce the issue : ```...
The specific issue I'm having is that we'd like to suppress PMMailUnprocessableEntityException caused by (django.contrib.auth) password resets. While I'd like to be that specific, I see that you already have...
I am not sure if this is a lmitiation of your lib or of postmark itself