Update agents/email_agent.py
Browse files- agents/email_agent.py +8 -0
agents/email_agent.py
CHANGED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
class EmailAgent:
|
2 |
+
def sequence(self, niche: str, business_type: str) -> str:
|
3 |
+
"""
|
4 |
+
Generate a 5‑step email marketing funnel.
|
5 |
+
"""
|
6 |
+
return (
|
7 |
+
f"EmailAgent: 5-part email sequence for {business_type} customers in {niche}."
|
8 |
+
)
|