postmarker
postmarker copied to clipboard
Postmark Templates support
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.
Hello! Yes, templates for emails are supported. For example:
postmark.emails.send_with_template(
TemplateId=123,
TemplateModel={'username': 'Test'}
From='[email protected]',
To='[email protected]',
)
Templates API is supported as well. Unfortunately there is not very much info in the documentation - https://postmarker.readthedocs.io/en/stable/templates.html
Kind Regards