Skip to content

volker48/flask-mandrill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 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'] = '[email protected]'
mandrill = Mandrill(app)
mandrill.send_email(
    from_email='[email protected]',
    subject='Subject',
    to=[{'email': '[email protected]'}, {'email': '[email protected]'}],
    text='Hello World'
)

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

send_email API Documentation

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

License

MIT © Marcus McCurdy

About

Flask plugin to simplify sending emails through Mandrill.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages