Metadata-Version: 2.4
Name: nox-mail-automaton
Version: 0.1.0
Summary: Professional email automation with branded HTML templates
Author-email: Author Name <author@example.com>
License: MIT
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Nox Mail Automaton

A professional Python package for automating branded, professional HTML emails.

## Features

- **Branded Templates**: Automatically generate responsive HTML emails with your company name and logo.
- **Custom Assets**: Easily include images and custom HTML/CSS content.
- **Gmail Ready**: Pre-configured for SMTP sending via Gmail.

## Installation

```bash
pip install .
```

## Usage

```python
from nox_mail_automaton import EmailAutomation

# 1. Initialize the automation
automation = EmailAutomation()

# 2. Generate a professional HTML template
html = automation.generate_html_template(
    company_name="Awesome Corp",
    image_url="https://example.com/logo.png",
    body_content="<p>We are excited to share some updates with you!</p>",
    primary_color="#2563EB"
)

# 3. Send the email
# Note: Use your Gmail 'App Password' for authentication
result = automation.send_email(
    sender_email="your-email@gmail.com",
    password="your-app-password",
    recipient_email="customer@example.com",
    subject="Welcome to Awesome Corp",
    html_content=html
)

print(result)
```
