mgbam commited on
Commit
9146d13
·
verified ·
1 Parent(s): 50a305b

Update agents/email_agent.py

Browse files
Files changed (1) hide show
  1. 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
+ )