Code Preview
#!/usr/bin/env python3
FOLLOWUPS = {
1: 'Just wanted to bump this up in your inbox...',
2: 'Quick follow-up on my last email...',
3: 'Last time reaching out about this...',
4: 'Closing the loop on this conversation...'
}
def generate_followup(number, context):
intro = FOLLOWUPS.get(number, FOLLOWUPS[1])
return f'''
Subject: Re: {context['original_subject']}
{intro}
{context['original_value']}
Still interested in learning more?
Best,
{context['sender']}
'''
# Full script in download...