mailer

A module that simplifies sending email
Download

mailer Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Ryan Ginstrom
  • Publisher web site:
  • http://ginstrom.com/

mailer Tags


mailer Description

A module that simplifies sending email mailer is a Python library that simplifies sending of e-mails.Example (sending an HTML email):from mailer import Mailerfrom mailer import Messagemessage = Message(From="me@example.com",To="you@example.com",charset="utf-8")message.Subject = "An HTML Email"message.Html = """This email uses HTML!"""message.Body = """This is alternate text."""sender = Mailer('smtp.example.com')sender.send(message) Here are some key features of "mailer": · Single class to send plain text, HTML email, and attachments · Auto detects attachment types · Support for internationalized headers Requirements: · Python What's New in This Release: · Message.attach takes an optional cid argument. · You can now send HTML emails with attachments


mailer Related Software