Skip to content
This repository was archived by the owner on Aug 8, 2026. It is now read-only.

Commit 2cb3373

Browse files
authored
Merge pull request #3 from multimail-dev/chore/retire-deprecation-0.1.1
chore: final release 0.1.1 — deprecate in favor of MCP + REST
2 parents 136e5af + 9a584db commit 2cb3373

4 files changed

Lines changed: 19 additions & 37 deletions

File tree

.github/workflows/publish.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# multimail
22

3+
> ⚠️ **DEPRECATED (2026-08-08).** This package is retired and will receive no further updates.
4+
> MultiMail's supported integration surfaces are the **MCP server** at `https://mcp.multimail.dev`
5+
> (LangChain, CrewAI, LlamaIndex, Claude, and all MCP-capable frameworks connect natively) and the
6+
> **REST API** (`https://multimail.dev/docs`). The final published release is **0.1.1** (deprecation
7+
> notice only); any code in this repo beyond 0.1.1 was never released.
8+
9+
310
Python SDK for the [MultiMail API](https://multimail.dev) — email infrastructure for AI agents.
411

512
## Installation

multimail/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
"""MultiMail Python SDK — email infrastructure for AI agents."""
22

3+
import warnings as _warnings
4+
5+
_warnings.warn(
6+
"The multimail PyPI package is deprecated and unmaintained (retired 2026-08-08). "
7+
"Use MultiMail's MCP server (https://mcp.multimail.dev) or REST API "
8+
"(https://multimail.dev/docs) instead.",
9+
FutureWarning,
10+
stacklevel=2,
11+
)
12+
13+
314
from multimail.client import MultiMail, AsyncMultiMail
415
from multimail.exceptions import MultiMailError, AuthenticationError, NotFoundError, RateLimitError, ValidationError
516

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "multimail"
7-
version = "0.2.0"
7+
version = "0.1.1"
88
description = "Python SDK for the MultiMail API — email infrastructure for AI agents"
99
readme = "README.md"
1010
license = "MIT"

0 commit comments

Comments
 (0)