Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
frozenskys committed Apr 7, 2010
1 parent 6d47ca7 commit 7e7fe0e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions README
@@ -1,4 +1,4 @@
PMMail object for Postmark (http://postmarkapp.com)
PMMail and PMBounceManager objects for Postmark (http://postmarkapp.com)

PYTHON INFORMATION:
Works on Python 2.4 and better. Versions
Expand All @@ -7,7 +7,10 @@ PYTHON INFORMATION:
Python 2.6 has JSON support built in.

CHANGE LOG:

Version 0.1.6
- Added a new PMBounceManager Class that allows easy access to the PostMark
bounce API.

Version 0.1.5
- Added ".cc" property for carbon copy recipients. Changed django_backend to
support multiple recipients, and to use "to" rather than "recipients" on the django
Expand All @@ -29,7 +32,7 @@ CHANGE LOG:
Version 0.1.1:
- Initial release

USEAGE:
USAGE:
Make sure you have a Postmark account. Visit
http://postmarkapp.com to sign up for an account.
Requires a Postmark API key.
Expand Down Expand Up @@ -81,3 +84,5 @@ EXCEPTIONS:
TODO:
Add automatic multipart emails via regex stripping of HTML tags from html_body
if the .multipart property is set to True
Refactor PMBounceManager Object and improve error handling within it.
Add PMBounceManager example to the Django test.
4 changes: 2 additions & 2 deletions src/postmark/core.py
Expand Up @@ -253,9 +253,9 @@ def activate(self, bounce_id):
self._check_values()
req_url = '/bounces/' + str(bounce_id) + '/activate'
print req_url
h1 = httplib.HTTPConnection('api.postmarkapp.com')
h1 = httplib.HTTPConnection('api.postmarkapp.com')
dta = urllib.urlencode({"data":"blank"})
req = h1.request('PUT',
req = h1.request('PUT',
req_url,
dta,
{
Expand Down

0 comments on commit 7e7fe0e

Please sign in to comment.