---
title: "Python SDK Now Available"
description: "Integrate Lettermint into your Python applications with our new SDK and easily send emails from your Python code."
url: "https://lettermint.co/changelog/python-sdk-now-available"
published: "2025-12-23"
last_updated: "2025-12-23"
---

# Python SDK Now Available

> Integrate Lettermint into your Python applications with our new SDK and easily send emails from your Python code.

With our new Python SDK you can integrate Lettermint into your applications
and quickly get started sending
[transactional emails](https://lettermint.co/features/transactional-emails) from your
code. The SDK supports both synchronous and asynchronous requests and works
with Python 3.9 and higher. Great for Django, FastAPI or other Python
projects.

An example of sending an email with the Python SDK:

```python
from lettermint import Lettermint

client = Lettermint(api_token="your-api-token")

response = (
    client.email
    .from_("hello@yourdomain.com")
    .to("recipient@example.com")
    .subject("Hello from Python!")
    .html("<h1>Welcome!</h1>")
    .text("Welcome!")
    .send()
)
```

We have extensive documentation and examples available to help you integrate
Lettermint into your Python application(s):

- Check out the [Python SDK](https://github.com/lettermint/lettermint-python)
for more information.
- Read our documentation at [docs.lettermint.co](https://lettermint.co/docs)
for instructions and examples.

In addition to our existing integrations for Laravel, PHP, Node.js and Python,
we are actively working on developing more integrations. Keep an eye on our
[integrations page](https://lettermint.co/integrations) for more
information.
