draft
code
Python
verified
Free Download
devices
Cross-platform
code Code Preview
Python#!/usr/bin/env python3
"""
Email Template Generator
Create professional email templates with personalization
"""
TEMPLATES = {
'cold_outreach': '''
Hi ,
I noticed is .
We help companies like yours .
Would you be open to a quick call this week?
Best,
''',
'follow_up': '''
Hi ,
I wanted to follow up on my previous email about .
Do you have 15 minutes this week to discuss?
Thanks,
''',
'meeting_request': '''
Hi ,
I'd love to schedule a brief call to discuss .
Here are some times that work for me:
Let me know what works best for you.
Best regards,
'''
}
def generate_template(template_type, variables):
"""Generate email from template"""
template = TEMPLATES.get(template_type, '')
for key, value in variables.items():
template = template.replace(' + key + ', str(value))
return template.strip()
def list_templates():
"""List available templates"""
return list(TEMPLATES.keys())
if __name__ == '__main__':
print("Available templates:", list_templates())
vars = {'name': 'John', 'company': 'Acme Inc',
'observation': 'growing rapidly',
'benefit': 'scale email outreach',
'sender_name': 'Alex'}
email = generate_template('cold_outreach', vars)
print(email)
info About This Tool
The Email Template Generator creates professional email templates with personalization support. Use proven frameworks for cold outreach, follow-ups, and meeting requests.
Template Types
- Cold Outreach - Initial contact with prospects
- Follow-up - Re-engage non-responders
- Meeting Request - Schedule calls efficiently
- Value Proposition - Highlight benefits
- Case Study - Share success stories
Personalization Variables
- Recipient's first name- Company name- Personalized hook- Value proposition- Your name
Requirements
- Python 3.7+
- No external dependencies
Best Practice: Keep templates under 150 words for cold outreach. Focus on one clear call-to-action per email.
download Download Script
Need Full Automation?
Try Postigo for automated email campaigns with AI personalization
rocket_launch Start Free Trial