Skip to main content

Latest Version Build Status Coverage Status Code Climate Python Versions License Downloads

Flask-MailGun Flask extension to use the MailGun email parsing service for sending and receiving emails.

What it does

Flask-MailGun allows you to configure your connection into the MailGun api so that you can - Send emails - Set up routes - Handel incoming emails - flask-mailgun3 >= 0.1.4 should work with flask_security as a drop in replacement for flask_mail

Usage

from flask_mailgun import MailGun

mailgun = MailGun()

# .. later
mailgun.init_app(app)

# ..some other time
@mailgun.on_attachment
def save_attachment(email, attachment):
    data = attachment.read()
    with open(attachment.filename, "w") as f:
        f.write(data)

# .. even later register the upload endpoint
mailgun.route('/uploads')

# send an email like flask_mail
message = Message()
message.subject = "Hello World"
message.sender = "from@example.com"
message.add_recipient("u1@example.com")
message.add_recipient("u2@example.com")
message.body = "Testing some Mailgun awesomness!"

mailgun.send(message)

Long Requests

A mechanisom has been put in place to simplify handeling long requests. Basically if your callback function blocks the processing of an email for toolong it will cause the post from the mailgun services to timeout. At the moment this is done by setting the mailgun.callback_handeler to mailgun.async but you would have to do this before registering the callbacks (you could reregister on init as well).

# at config
app.config['MAILGUN_BG_PROCESSES'] = flask_mailgun.processing.async_pool(NO_PROCS)
app.config['MAILGUN_CALLBACK_HANDELER'] = app.config['MAILGUN_BG_PROCESSES']
# or later
mailgun.callback_handeler = mailgun.async

# but you may still have to :(
mailgun._on_attachment = [mailgun.async(func) for func in mailgun._on_attachment]

Async will save the attachment to disk and offload your callback to a process pool, handeling all the file opperations and file cleanup for you.

This however is probably not an ideal system (threadding dosnt go to well with flask and the process pool implimentation is not simple), and for something more robust we need to move to a celary based system. Setting up celary server and taksks however are beyond the scope of this extension, (we will provide an example though). In addition it may be beniffichial to move to a notify fetch pattern instead of mailgun posting the email to us, however the implimentation details will remain internal to flask_mailgun and the api for process_attachment shouldn’t change.

Release files for Flask-MailGun3 0.1.6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for Flask-MailGun3 0.1.6
File Size Uploaded
Flask-MailGun3-0.1.6.tar.gz 10.6 kB Details

Release files / Flask-MailGun3-0.1.6.tar.gz

Download URL Flask-MailGun3-0.1.6.tar.gz
Size 10.6 kB
Tags Source
SHA-256 checksum
How to use checksums
cb494f3066a6ad7d38e150ecdef69ff255a9e723394ad31aa89830fc8a5e0c16
BLAKE2b-256 checksum
How to use checksums
4725275c85e4b6d11bd05d8b5e31857e240b8082d49de5efbff9a9cb1e278985
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.6 This release

1 release file

0.1.5

1 release file

0.1.4

1 release file

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

0.0.8

2 release files

0.0.7

2 release files

0.0.6

2 release files

0.0.5

2 release files

0.0.4

2 release files

0.0.2

2 release files

0.0.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page