An open API service indexing awesome lists of open source software.

https://github.com/jkuatdsc/dsc-mailer

A simple mailing library for python powered applications using Sendgrid.
https://github.com/jkuatdsc/dsc-mailer

python3 sendgrid sendmail

Last synced: 25 days ago
JSON representation

A simple mailing library for python powered applications using Sendgrid.

Awesome Lists containing this project

README

          

# dsc-mailer

A simple mailing library for python powered applications using Sendgrid.

## Installation

To install the library using pip, run;

``pip install dsc-mailer``

## Required parameters

The library has one module for sending emails `mailer`

> the mailer module contains a send_mail function that expects five parameters

* Sender

* Receiver

* Email Subject

* Html Content

* Sendgrid Api_key

## Example Usage

```python
from dscmailer import mailer
my_email = mailer.send_mail(sender, receiver, subject, html_content, api_key)

```