postmarker
postmarker copied to clipboard
Python client library for Postmark API
The documentation for [`send_batch`](https://postmarker.readthedocs.io/en/stable/reference.html?highlight=send_batch#postmarker.models.emails.EmailManager.send_batch) and [`send_template_batch`](https://postmarker.readthedocs.io/en/stable/reference.html?highlight=send_batch#postmarker.models.emails.EmailManager.send_template_batch) both mention: > Parameters > emails – Email instances or dictionaries However, `emails` is actually equivalent to `*args`, i.e. `emails` internally captures (within `send_batch`...
`on_exception` is missing from `src/postmarker/django/__init__.py`, making it impossible to do ```python from postmarker.django import on_exception ``` even though the `pre_send` and `post_send` signals are exposed in this way. Thanks
After creating an [Email](https://postmarker.readthedocs.io/en/latest/reference.html?highlight=EmailTemplate#postmarker.models.emails.EmailManager.Email) object, converting it to a string representation leads to a confusing output. Example: ```python e = postmark_client.emails.Email(From="[email protected]", To="[email protected]", TextBody="text") print(e) ``` This outputs `` Cheers
Hi! So I'm trying to send a simple mail for testing purposes, however It is not letting me using any ENV variables or any sort of variable for that matter:...
Hello, I attach csv file with unicode string and send to email with postmark. When I download csv file and open with ms excel the file show wrong string. Not...
https://postmarkapp.com/developer/api/suppressions-api
Hi there, Thanks for a great library. I'm running into an edge case. If you have more than 10,000 outbound messages, this library will break as the `count=None` loop will...
> If you could document how to run the tests and how to add a test (what conventions, utilities you are using) that would be useful.
Hello, I'm building Django application and want to use PostMark's Templates (https://postmarkapp.com/why/templates). Does it supported by your library? I have ready docs but did not find anything about.