hetshah2708 commited on
Commit
68bf5c3
·
verified ·
1 Parent(s): 836d655

Create templates.py

Browse files
Files changed (1) hide show
  1. templates.py +59 -0
templates.py ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ TEMPLATES = {
2
+ "Cold Outreach": {
3
+ "Formal": {
4
+ "subject": "Quick discussion on improving team efficiency",
5
+ "body": """Dear {name},
6
+
7
+ I hope this message finds you well.
8
+ I came across your company and wanted to explore whether our solution
9
+ could help your team improve efficiency and reduce costs.
10
+
11
+ Would you be open to a short conversation this week?
12
+
13
+ Kind regards,
14
+ {sender}
15
+ """
16
+ },
17
+ "Casual": {
18
+ "subject": "Quick chat about improving team efficiency",
19
+ "body": """Hi {name},
20
+
21
+ Hope you’re doing well.
22
+ I came across your company and thought our solution
23
+ might help your team work more efficiently and reduce costs.
24
+
25
+ Would you be open to a quick chat this week?
26
+
27
+ Best,
28
+ {sender}
29
+ """
30
+ }
31
+ },
32
+
33
+ "Follow-Up": {
34
+ "Formal": {
35
+ "subject": "Following up on our previous conversation",
36
+ "body": """Dear {name},
37
+
38
+ I am following up on my previous message.
39
+ I would appreciate the opportunity to understand your current challenges
40
+ and explore how we might support your goals.
41
+
42
+ Kind regards,
43
+ {sender}
44
+ """
45
+ },
46
+ "Casual": {
47
+ "subject": "Just following up",
48
+ "body": """Hi {name},
49
+
50
+ Just following up on my last message.
51
+ Would love to understand your current challenges
52
+ and see if there’s a way we can help.
53
+
54
+ Best,
55
+ {sender}
56
+ """
57
+ }
58
+ }
59
+ }