Socket
Socket
Sign inDemoInstall

sendgrid-async

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sendgrid-async

SendGrid using a client based on httpx.


Maintainers
1

Readme

PythonPython
PackagePyPI Latest Release PyPI Downloads
MetaLicense - MIT

Async-Sendgrid

Sendgrid-Async is a simple asynchronous client built upon the httpx library.

Installation

You can install Sendgrid-Async using pip with the following command:

pip install sendgrid-async

Usage

Here is a brief script demonstrating how to send an email using Async-Sendgrid:

First, import the SendgridAPI from the sendgrid-async package. Then, create a SendgridAPI object using your API key.

from async_sendgrid import SendgridAPI
import os

API_KEY = os.environ.get('SECRET_API_KEY')
sendgrid = SendgridAPI(API_KEY)

Next, we can create an email using the original sendgrid library as follows:

from sendgrid.helpers.mail import Content, Email, Mail, To

from_email = Email("test@example.com")
to_email = To("test@example.com")
subject = "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
content = Content("text/plain", "Sed varius ligula ac urna vehicula ultrices. Nunc ut dolor sem.")

mail = Mail(
    from_email=from_email,
    to_email=to_email,
    subject=subject,
    content=content
    )

An email can be sent to sendgrid servers with the send API of the SendgridAPI instance:

async with sendgrid as client:
    response = await client.send(data)

For testing purposes, you can modify the API endpoint as follows:

sendgrid = SendgridAPI(api_key="SECRET_API_KEY", endpoint="https://localhost:3000/v3/mail/send")

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc