mailer 0.5
A module that simplifies sending email.
Here are some of the features:
- Single class to send plain text, HTML email, and attachments
- Auto detects attachment types
- Support for internationalized headers
Changes in version 0.3
The API for Mailer.To is changed. Use a string to specify a single recipient, and an iterable to specify more than one.
Changes in version 0.4
You can now specify the port in Mailer
from mailer import Mailer
sender = Mailer('smtp.example.com', port=20)
Changes in version 0.5
- Message.attach takes an optional cid argument.
- You can now send HTML emails with attachments
Thanks to Douglas Mayle for his patch for this.
Examples
Sending an HTML email:
from mailer import Mailer
from mailer import Message
message = Message(From="me@example.com",
To="you@example.com",
charset="utf-8")
message.Subject = "An HTML Email"
message.Html = """This email uses <strong>HTML</strong>!"""
message.Body = """This is alternate text."""
sender = Mailer('smtp.example.com')
sender.send(message)
Sending an attachment:
from mailer import Mailer
from mailer import Message
message = Message(From="me@example.com",
To=["you@example.com", "him@example.com"],
Subject="Cute Cat")
message.Body = """Kittens with dynamite"""
message.attach("kitty.jpg")
sender = Mailer('smtp.example.com')
sender.send(message)
Tested with Python 2.4 and 2.5
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| mailer-0.5.win32.exe (md5) | MS Windows installer | any | 2009-05-28 | 63KB | 155 |
| mailer-0.5.zip (md5) | Source | 2009-05-28 | 3KB | 2807 | |
- Author: Ryan Ginstrom <software at ginstrom com>
- Maintainer: Ryan Ginstrom <software at ginstrom com>
- Home Page: http://ginstrom.com/code/mailer.html
- Keywords: email, smtp, smtplib
- License: MIT
- Categories
- Package Index Owner: ginstrom
- DOAP record: mailer-0.5.xml
Log in to rate this package.
Package rating (1 vote):
0.0
- 0 points: 1 vote
Ratings range from 0 to 5 (best).
Package Comments:
- Beast99 (2010-07-08, 0 points):
It is not works with Python3
