postmark

Convert curl example to pycurl

Convert curl example to pycurl Question: Could someone convert the following PostMark curl example to pycurl? curl -X POST "http://api.postmarkapp.com/email" -H "Accept: application/json" -H "Content-Type: application/json" -H "X-Postmark-Server-Token: ed742D75-5a45-49b6-a0a1-5b9ec3dc9e5d" -v -d "{From: ‘[email protected]’, To: ‘[email protected]’, Subject: ‘Postmark test’, HtmlBody: ‘<html><body><strong>Hello</strong> dear Postmark user.</body></html>’}" Asked By: Darth || Source Answers: You can use something like this. …

Total answers: 1