Metadata-Version: 2.1
Name: cold-email-generator
Version: 1.0.0
Summary: Cold email templates with AI personalization
Home-page: https://github.com/meridian-mind/cold_email_generator
Author: Meridian Mind
Author-email: contact@meridianmind.io
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Cold Email Generator

A Python package providing 10 cold email templates with AI personalization.

## Features

- 10 cold email templates (initial, follow-up, value-add, case study, meeting request, etc.)
- Template personalization via `deep_replace` function
- Easy import: `from cold_email_generator import generate_email`

## Usage

```python
from cold_email_generator import generate_email

email = generate_email(
    "initial_outreach",
    first_name="Alice",
    company="Acme Corp",
    industry="SaaS",
    sender_name="Bob"
)
```

## Templates

| Key | Description |
|-----|-------------|
| `initial_outreach` | Cold outreach (first contact) |
| `follow_up` | Follow-up after initial email |
| `value_add` | Share valuable resource |
| `case_study` | Share success story |
| `meeting_request` | Request a meeting |
| `break_up` | Final email before closing the loop |
| `referral` | Ask for warm introduction |
| `warm_reach_out` | Warm outreach via social |
| `roi_calculator` | Share ROI analysis |
| `personalized_cold` | Deeply personalized cold email |

## License

MIT
