-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3bf9a3
commit b85e859
Showing
2 changed files
with
3 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,8 @@ | |
name = django-mailer | ||
version = attr: mailer.__version__ | ||
description = A reusable Django app for queuing the sending of email | ||
long_description = ``django-mailer`` is a reusable Django app for queuing the sending of email. | ||
It works by storing email in the database for later sending. | ||
The main reason for doing this is that for many apps, the database will be | ||
much more reliable and faster than other email sending backends which require | ||
3rd party services e.g. SMTP or an HTTP API. By storing and sending later, we can | ||
return succeed immediately, and then attempt actual email sending in the background, | ||
with retries if needed. | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
author = Pinax Team | ||
author_email = [email protected] | ||
url = http://github.com/pinax/django-mailer/ | ||
|