Skip to content

Flask plugin to simplify sending emails through Mandrill.

License

Notifications You must be signed in to change notification settings

diogeneshamilton/flask-mandrill

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flask-mandrill

Flask plugin to simplify sending emails through Mandrill.

Installation

pip install flask-mandrill

Usage

from flask.ext.mandrill import Mandrill

app = Flask(__name__)
app.config['MANDRILL_API_KEY'] = 'your api key'
app.config['MANDRILL_DEFAULT_FROM'] = 'admin@yourdomain.com'
mandrill = Mandrill(app)
mandrill.send_email(
    from_email='someone@yourdomain.com',
    subject='Subject',
    to=[{'email': 'someone@somedomain.com'}, {'email': 'someoneelse@someotherdomain.com'}],
    text='Hello World'
)

To use a templated e-mail, specify template_name='some template name as an argument.

For additional information about send_email parameters: https://mandrillapp.com/api/docs/messages.html

About

Flask plugin to simplify sending emails through Mandrill.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%