postmarker
postmarker copied to clipboard
Suggestion: better string representation of Email object
After creating an Email object, converting it to a string representation leads to a confusing output.
Example:
e = postmark_client.emails.Email(From="[email protected]", To="[email protected]", TextBody="text")
print(e)
This outputs <Email: None>
Cheers