#!/usr/bin/env node /** * Priority 1 Influencer Outreach Email Sender * Issue: FRE-667 * Send Date: April 26, 2026 * * Contacts (5 total): * 1. John Finn - johnfinn@business.youtube.com * 2. No Film School - tips@nofilmschool.com * 3. Script Lab - info@scriptlab.com * 4. ScreenCraft - info@screencraft.org * 5. Go Into The Story - scott@thestorydepartment.com */ import { Resend } from 'resend'; // Initialize Resend (free tier: 100 emails/day, 3000/month) const resend = new Resend(process.env.RESEND_API_KEY || 're_test_key'); const emails = [ { to: 'johnfinn@business.youtube.com', subject: 'Free lifetime Pro account - modern screenwriting tool for your channel', name: 'John Finn', template: 'john-finn' }, { to: 'tips@nofilmschool.com', subject: 'Beta access: Modern screenwriting platform for NFTS community', name: 'No Film School', template: 'no-film-school' }, { to: 'info@scriptlab.com', subject: 'Collaboration: Beta access + potential partnership', name: 'Script Lab', template: 'script-lab' }, { to: 'info@screencraft.org', subject: 'Beta partnership: Modern screenwriting tool for ScreenCraft community', name: 'ScreenCraft', template: 'screencraft' }, { to: 'scott@thestorydepartment.com', subject: 'WGA blog + modern screenwriting tools - partnership opportunity?', name: 'Scott Myers', template: 'go-into-the-story' } ]; // Email templates from /marketing/beta-outreach-priority-1.md const templates = { 'john-finn': `
Hi John,
I've been following your channel for years - your Final Draft tutorials are legendary in the screenwriting community. The way you break down screenplay format is exactly what new writers need.
I'm reaching out from Scripter, a new screenwriting platform launching soon. We're building a modern alternative to Final Draft with:
The Ask:
I'd love to give you free lifetime Pro access in exchange for:
We're limiting our beta to 500 writers, and I think your audience would love to see a modern alternative covered on your channel.
Next Steps:
Interested in a quick 15-min demo? Here's my Calendly: Calendly Link
Or just reply to this email and I'll get you set up with beta access immediately.
Thanks for all the amazing content you create for the screenwriting community!
Best,
CMO, Scripter
P.S. Happy to provide an exclusive discount code for your viewers if/when we launch!
`, 'no-film-school': `Hi NFTS Team,
Love what you're doing with No Film School - it's the go-to resource for indie filmmakers and screenwriters.
I'm reaching out from Scripter, a new screenwriting platform built for how writers actually work in 2026:
Key Features:
The Opportunity:
We're launching our beta program (500 users max) and would love to have the NFTS community represented. We can offer:
We're not asking for coverage - just honest feedback from people who actually know filmmaking.
Interested in early access?
Best,
CMO, Scripter
P.S. We're launching on Product Hunt May 7 - happy to coordinate if you're interested in featuring us!
`, 'script-lab': `Hi Script Lab Team,
I've been following Script Lab for years - your screenplay analysis videos and software reviews are incredibly valuable to the screenwriting community.
I'm reaching out from Scripter, a new screenwriting platform launching soon. Given that you've reviewed Final Draft, WriterDuet, and other tools, I thought you might be interested in what we're building.
What Makes Scripter Different:
Partnership Opportunity:
We're launching our beta program and would love to partner with Script Lab:
We're limiting beta to 500 users, and I'd love to have Script Lab as one of our founding partners.
Interested in chatting?
Best,
CMO, Scripter
Hi ScreenCraft Team,
Huge fan of what you're doing with ScreenCraft - the competitions, resources, and blog are incredibly valuable for working screenwriters.
I'm reaching out from Scripter, a new screenwriting platform launching in May 2026. We're building a modern alternative to Final Draft with real-time collaboration and AI assistance.
Why I'm Reaching Out:
Your community is exactly who we're building for - serious writers who want professional tools without the $200 price tag.
Partnership Ideas:
What We're Asking:
We're not asking for free coverage - we want to provide genuine value to your community.
Interested in exploring this?
Best,
CMO, Scripter
Hi Scott,
I've been reading Go Into The Story since the beginning - it's the gold standard for screenwriting education. Your posts on story structure have taught me more than any book.
I'm reaching out from Scripter, a new screenwriting platform launching soon. Given that you write about the craft (not just tools), I wanted to get your perspective on what we're building.
The Vision:
We believe screenwriting tools should:
The Ask:
I'd love to offer you free lifetime Pro access for your own writing, no strings attached. If you find it valuable and want to mention it to your readers, that's great - but no pressure at all.
We're also happy to:
Would you be open to a quick call to discuss?
Best,
CMO, Scripter
P.S. I know you get pitched constantly - this isn't a pitch for coverage. Just offering a tool that might help your writing.
` }; async function sendEmails() { console.log('🚀 Starting Priority 1 influencer outreach...\n'); const results = []; for (const email of emails) { try { console.log(`📧 Sending to ${email.name} (${email.to})...`); const data = await resend.emails.send({ from: 'Scripter CMO