SalesEmailGenerator / templates.py
hetshah2708's picture
Create templates.py
68bf5c3 verified
TEMPLATES = {
"Cold Outreach": {
"Formal": {
"subject": "Quick discussion on improving team efficiency",
"body": """Dear {name},
I hope this message finds you well.
I came across your company and wanted to explore whether our solution
could help your team improve efficiency and reduce costs.
Would you be open to a short conversation this week?
Kind regards,
{sender}
"""
},
"Casual": {
"subject": "Quick chat about improving team efficiency",
"body": """Hi {name},
Hope you’re doing well.
I came across your company and thought our solution
might help your team work more efficiently and reduce costs.
Would you be open to a quick chat this week?
Best,
{sender}
"""
}
},
"Follow-Up": {
"Formal": {
"subject": "Following up on our previous conversation",
"body": """Dear {name},
I am following up on my previous message.
I would appreciate the opportunity to understand your current challenges
and explore how we might support your goals.
Kind regards,
{sender}
"""
},
"Casual": {
"subject": "Just following up",
"body": """Hi {name},
Just following up on my last message.
Would love to understand your current challenges
and see if there’s a way we can help.
Best,
{sender}
"""
}
}
}