marktennyson / fastapi-mailman

Porting Django's email implementation to your FastAPI applications.

Home Page:http://gh.aniketsarkar.site/fastapi-mailman/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ“¬ Fastapi-Mailman

πŸ”₯ Porting Django's email implementation to your FastAPI applications.

PyPI PyPI - Downloads dev workflow GitHub commits since latest release (by SemVer) PyPI - License

Fastapi-Mailman is a Fastapi extension providing simple email sending capabilities. It's actually a hard fork of waynerv's flask-mailman module. I have tried to implement the same features for the Fastapi too.

It was meant to replace the basic Fastapi-Mail with a better warranty and more features.

β›² Key Features:

  1. Easy to use.
  2. Backend based email sender.
  3. Customisable backend class.
  4. Proper testcases.
  5. Proper documentation.

πŸ”— Important Links:

Github Repo
PYPI
Documentation

πŸ’― Usage

Fastapi-Mailman ported Django's email implementation to your Fastapi applications, which may be the best mail sending implementation that's available for python.

The way of using this extension is almost the same as Django.

Documentation: https://marktennyson.github.io/fastapi-mailman.

πŸͺœ Basic Example

from fastapi import FastAPI
import uvicorn as uv
from fastapi_mailman import Mail, EmailMessage
from fastapi_mailman.config import ConnectionConfig

app = FastAPI(debug=True)

config = config = ConnectionConfig(
    MAIL_USERNAME = 'example@domain.com',
    MAIL_PASSWORD = "7655tgrf443%$",
    MAIL_BACKEND =  'smtp',
    MAIL_SERVER =  'smtp.gmail.com',
    MAIL_PORT = 587,
    MAIL_USE_TLS = True,
    MAIL_USE_SSL = False,
    MAIL_DEFAULT_SENDER = 'example@domain.com',
    )
mail = Mail(config)

@app.get("/send-base")
async def send_base():
    msg = EmailMessage('this is subject', 'this is message', to=['aniketsarkar@yahoo.com'])
    await msg.send()
    return {"Hello": "World"}

@app.get("/send-mail")
async def check_send_mail():
    await mail.send_mail("this is subject", "this is message", None, ["aniketsarkar@yahoo.com"])
    return {"Hello": "World"}


if __name__ == "__main__":
    uv.run(app, port=8082, debug=True)

πŸš‡ Development

πŸ§‘β€πŸ’» Contribution procedure.

  1. Create a new issue on github.
  2. Fork and clone this repository.
  3. Make some changes as required.
  4. Write unit test to showcase its functionality.
  5. Submit a pull request under the master branch.

πŸ–¨οΈ Run this project on your local machine.

To run this project on your local machine please click here

❀️ Contributors

Credits goes to these peoples:

πŸ“ License

MIT

Copyright (c) 2021 Aniket Sarkar(aniketsarkar@yahoo.com)

About

Porting Django's email implementation to your FastAPI applications.

http://gh.aniketsarkar.site/fastapi-mailman/

License:MIT License


Languages

Language:Python 99.1%Language:Makefile 0.9%