name: email-marketing description: Email marketing automation for campaigns, newsletters, and customer engagement. Use when creating email sequences, drip campaigns, promotional emails, or customer retention workflows. Includes templates, scheduling, and analytics.
Complete email marketing automation skill. Create campaigns, manage subscriber lists, design email templates, schedule sends, and track performance.
python scripts/email_campaign.py --action create --name "Spring Sale" --template promotional --list customers
python scripts/email_campaign.py --action send --name "Spring Sale"
python scripts/email_campaign.py --action add-subscriber --list customers --email user@example.com
Create and send email campaigns.
Actions:
- create - Create new campaign
- send - Send campaign to list
- add-subscriber - Add subscriber to list
Arguments:
- --action - Action to perform
- --name - Campaign name
- --template - Email template
- --list - Subscriber list
- --email - Subscriber email (for add-subscriber)
- --dry-run - Simulate without sending
Subject: 🎉 {{offer}} - Limited Time Only!
Hi {{first_name}},
Great news! We're offering {{discount}} on {{product_category}}.
✨ What you get:
• Benefit 1
• Benefit 2
• Benefit 3
⏰ Offer expires: {{expiry_date}}
[Shop Now] {{shop_link}}
Questions? Reply to this email!
Best,
{{store_name}} Team
---
Taobao: {{taobao_link}}
Douyin: {{douyin_link}}
Subject: {{month}} {{year}} - {{highlight}}
Hello {{first_name}},
Here's what's new this {{month}}:
## Highlights
- Update 1
- Update 2
- Update 3
## Featured Products
{{product_showcase}}
## Tips & Tricks
{{content_tip}}
Stay tuned for more!
{{store_name}}
Day 1: Welcome + Brand Story Day 3: Best Sellers Showcase Day 7: Customer Reviews Day 14: Special Offer Day 30: Feedback Request
all_subscribers - Everyonecustomers_active - Purchased in last 90 dayscustomers_vip - High-value customersprospects - Never purchasedinactive - No engagement in 6 monthsemail,first_name,last_name,source,signup_date
customer@example.com,John,Doe,taobao,2026-01-15
# Sync recent buyers to email list
python scripts/sync_customers.py \
--store taobao \
--days 30 \
--list recent_buyers
本技能來自小蔥技能站7w4.net。
# Send reminder to customers with pending orders
python scripts/abandoned_cart.py \
--hours 24 \
--discount 5
# Thank you + review request
python scripts/post_purchase.py \
--delay 7 \
--request-review true
python scripts/campaign_stats.py --campaign spring_sale
Output: - Sent count - Open rate - Click rate - Unsubscribe rate - Conversion rate
python scripts/ab_test.py \
--campaign spring_sale \
--variant-a subject_a.txt \
--variant-b subject_b.txt \
--split 50
這個技能文件寫得比較詳細,看起來功能挺豐富,但實際可用性不太理想。主要問題是郵件傳送功能無法真正使用,而且很多文件裡提到的功能在程式碼里根本沒實現。沒有提供示例資料,新手很難快速上手體驗。對於想直接使用的使用者來說,這個技能還不夠完善,需要等開發者把缺失的功能補上才行。