Dramatically simplify sending email from your python app
Project description
=================
MailShake
=================
Although Python makes sending email relatively easy via the smtplib module, this library provides a couple of light wrappers over it.
These wrappers are provided to make sending email extra quick, to make it easy to test email sending during development, and to provide support for platforms that can’t use SMTP.
Usage::
from mailshake import SMTPMailer
mailer = SMTPMailer()
mailer.send(
subject='Hi',
text_content='Hello world!',
from_email='from@example.com',
to=['mary@example.com', 'bob@example.com']
)
You can also compose several messages and send them at the same time::
from mailshake import SMTPMailer, EmailMessage
mailer = SMTPMailer()
messages = []
email_msg = EmailMessage(
"Weekend getaway",
'Here's a photo of us from our trip.',
'from@example.com',
['mary@example.com', 'bob@example.com']
)
email_msg.attach("picture.jpg")
messages.append(email_msg)
…
mailer.send_messages(messages)
Mailers availiable:
* SMTPMailer
* AmazonSESMailer
and:
* ToConsoleMailer (prints the emails in the console)
* ToFileMailer (save the emails in a file)
* ToMemoryMailer (for testing)
* DummyMailer (does nothing)
--------
[MIT License](http://www.opensource.org/licenses/mit-license.php).
© 2011 by [Lúcuma labs](http://lucumalabs.com).
MailShake
=================
Although Python makes sending email relatively easy via the smtplib module, this library provides a couple of light wrappers over it.
These wrappers are provided to make sending email extra quick, to make it easy to test email sending during development, and to provide support for platforms that can’t use SMTP.
Usage::
from mailshake import SMTPMailer
mailer = SMTPMailer()
mailer.send(
subject='Hi',
text_content='Hello world!',
from_email='from@example.com',
to=['mary@example.com', 'bob@example.com']
)
You can also compose several messages and send them at the same time::
from mailshake import SMTPMailer, EmailMessage
mailer = SMTPMailer()
messages = []
email_msg = EmailMessage(
"Weekend getaway",
'Here's a photo of us from our trip.',
'from@example.com',
['mary@example.com', 'bob@example.com']
)
email_msg.attach("picture.jpg")
messages.append(email_msg)
…
mailer.send_messages(messages)
Mailers availiable:
* SMTPMailer
* AmazonSESMailer
and:
* ToConsoleMailer (prints the emails in the console)
* ToFileMailer (save the emails in a file)
* ToMemoryMailer (for testing)
* DummyMailer (does nothing)
--------
[MIT License](http://www.opensource.org/licenses/mit-license.php).
© 2011 by [Lúcuma labs](http://lucumalabs.com).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
MailShake-0.9.8.tar.gz
(139.1 kB
view details)
File details
Details for the file MailShake-0.9.8.tar.gz
.
File metadata
- Download URL: MailShake-0.9.8.tar.gz
- Upload date:
- Size: 139.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 584cad8b6d22b148504a2aa76dc3d7d5b7f78d72e9e9f99032ddd70c6900eed9 |
|
MD5 | 82073dcb37b6e9a8863f89a473440fd1 |
|
BLAKE2b-256 | a12e8759dbaeb51928eea345c8b45a1c67ce4d2e836b8a82e4803c57759a94d3 |