import os
import sys

def draft_emails():
    content = """# Agency Outreach v1 - AgileAdapt

## 1. Margin Media
**Recipient:** hello@margin.media
**Location:** Brisbane
**Focus:** Trades/Health

**Subject:** December 2026 AU Privacy Act ADM — your clients need this now

Hi Team,

I'm reaching out from AgileAdapt. With the December 2026 Australian Privacy Act ADM (Automated Decision Making) reforms approaching, we've developed a certified solution that acts as compliance insurance for agencies and their clients.

Our "AgileAdapt 9-Layer Shield" is a 9-patent-pending AI validation suite that catches hallucinations in real-time, ensuring your clients stay compliant.

We're looking to partner with elite Brisbane agencies like Margin Media. We offer:
- 15% recurring commission on base fees.
- Technical Specialist support for your client pitches.
- A "plug-and-play" AI Voice Widget that handles calls via browser.

Would you be open to a quick chat about how we can protect your clients and add a new revenue stream to your agency?

Best regards,
Kinan
AgileAdapt

---

## 2. Excite Media
**Recipient:** info@excitemedia.com.au
**Location:** Brisbane
**Focus:** Home Services

**Subject:** December 2026 AU Privacy Act ADM — your clients need this now

Hi Team,

The December 2026 Australian Privacy Act ADM reforms are going to be a major forcing function for home service businesses. 

AgileAdapt has built the "9-Layer Shield" to provide real-time hallucination catching and full compliance. We've launched an AI Voice Widget that requires no phone number and sits directly on your clients' sites.

We'd love to discuss a partnership where you refer, we handle the liability and tech, and you earn 15% commission.

Can we schedule a 10-minute brief?

Best regards,
Kinan
AgileAdapt

---

## 3. Digital Nomads HQ
**Recipient:** hello@digitalnomadshq.com.au
**Location:** Sunshine Coast
**Focus:** AI early adopters

**Subject:** December 2026 AU Privacy Act ADM — your clients need this now

Hi Digital Nomads HQ,

As leaders in the AI space, you're likely aware of the impending December 2026 AU Privacy Act ADM reforms. 

We've built the "AgileAdapt 9-Layer Shield" specifically to solve the liability gap for AI deployments. Our AI Voice Widget is the first browser-native solution to incorporate this 9-patent-pending validation layer.

We're looking for Pioneer Partners. 15% commission, co-selling support, and the most secure AI voice tech in the country.

Are you ready to lead the compliance wave?

Best regards,
Kinan
AgileAdapt
"""
    output_path = "/mnt/e/genesis-system/AGILEADAPT/marketing/agency_outreach_v1.md"
    os.makedirs(os.path.dirname(output_path), exist_ok=True)
    with open(output_path, "w") as f:
        f.write(content)
    print(f"Drafted emails saved to {output_path}")

if __name__ == "__main__":
    draft_emails()
