Skip to main content سوق المهارات اكتشف واستكشف مهارات الذكاء الاصطناعي التي بناها المجتمع.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
نسخ Promptعرض تفاصيل Prompt يتجاوز الأمر المباشر Prompt المخصّص للمراجعة. افحص المصدر قبل تشغيله.
npx skills add https://github.com/Agents-Store/claude-plugins --skill email-senders-configيبقى الأمر في سطر واحد. مرّر أفقيًا لمراجعته كاملًا قبل النسخ.
تفضّل نسخة محلية؟ نزّل الملفات المتاحة حاليًا لدى SkillsMP.
تحميل Zip جاري التحميل... المهن ذات الصلة SOC
استنادا إلى تصنيف SOC المهني
name email-senders-config description Email sender management, email tags, blacklist management, and account balance. Use when configuring senders, managing email tags, handling blacklisted addresses, or checking account balance.
Email Senders & Configuration
This skill covers sender verification, email tags, blacklist management, email information, and account balance.
Available Tools
Senders
Tool Description email_senders_listList all verified sender addresses email_senders_createAdd a new sender email email_senders_deleteRemove a sender email email_senders_code_sendSend verification code to sender email email_senders_code_activateActivate sender with verification code
Email Information
Tool Description email_emails_listGet info for multiple email addresses email_emails_showGet info for a single email email_emails_show_detailsGet detailed info for a single email email_emails_deleteDelete email from all lists email_emails_statistics_listGet statistics for multiple emails email_emails_statistics_show
Get statistics for a single email
Tags Tool Description email_tags_listList all email tags email_tags_createCreate a new tag email_tags_updateUpdate a tag email_tags_deleteDelete a tag email_tags_emails_pinAssign tags to email addresses email_tags_emails_unpinRemove tags from email addresses email_tags_phones_pinAssign tags to phone numbers email_tags_phones_unpinRemove tags from phone numbers
Blacklist Tool Description email_blacklist_emails_listList blacklisted email addresses email_blacklist_emails_addAdd emails to blacklist email_blacklist_emails_deleteRemove emails from blacklist
Balance Tool Description email_balance_showGet account balance email_balance_show_detailGet detailed balance breakdown
Sender Management
List Senders Tool: email_senders_list
Input: {}
Returns all verified sender email addresses.
Add and Verify New Sender Step 1: Add sender
Tool: email_senders_create
Input: {"email": "news@acme.com", "name": "Acme News"}
Step 2: Send verification code
Tool: email_senders_code_send
Input: {"email": "news@acme.com"}
Step 3: Activate with code (user provides code from email)
Tool: email_senders_code_activate
Input: {"email": "news@acme.com", "code": "123456"}
Remove Sender Tool: email_senders_delete
Input: {"email": "old-sender@acme.com"}
Email Information
Look Up Email Details Tool: email_emails_show
Input: {"email": "user@example.com"}
Returns subscription status, lists membership, and basic info.
Detailed Email Info Tool: email_emails_show_details
Input: {"email": "user@example.com"}
Returns full details including all variables, tags, and history.
Email Statistics Tool: email_emails_statistics_show
Input: {"email": "user@example.com"}
Returns open rates, click rates, and engagement history.
Delete Email Globally Tool: email_emails_delete
Input: {"email": "user@example.com"}
Removes email from ALL lists. Use with caution.
Tag Management
List Tags Tool: email_tags_list
Input: {}
Returns all tags with IDs and names.
Create Tag Tool: email_tags_create
Input: {"name": "VIP Customer"}
Returns new tag ID.
Assign Tag to Emails Tool: email_tags_emails_pin
Input: {"tag_id": "<tag-id>", "emails": ["user1@example.com", "user2@example.com"]}
Remove Tag from Emails Tool: email_tags_emails_unpin
Input: {"tag_id": "<tag-id>", "emails": ["user1@example.com"]}
Assign Tag to Phones Tool: email_tags_phones_pin
Input: {"tag_id": "<tag-id>", "phones": ["+380501234567"]}
Update/Delete Tags Tool: email_tags_update
Input: {"id": "<tag-id>", "name": "Premium Customer"}
Tool: email_tags_delete
Input: {"id": "<tag-id>"}
Blacklist Management
View Blacklist Tool: email_blacklist_emails_list
Input: {}
Returns all blacklisted email addresses.
Add to Blacklist Tool: email_blacklist_emails_add
Input: {"emails": ["spam@example.com", "bounced@example.com"]}
Prevents sending to these addresses across all campaigns.
Remove from Blacklist Tool: email_blacklist_emails_delete
Input: {"emails": ["rehabilitated@example.com"]}
Account Balance
Check Balance Tool: email_balance_show
Input: {}
Returns current email credit balance.
Detailed Balance Tool: email_balance_show_detail
Input: {}
Returns breakdown by plan, bonus credits, and expiration dates.
Common Workflows
Set Up New Sender 1. email_senders_create(email, name) -> Add sender
2. email_senders_code_send(email) -> Send verification
3. (User checks inbox for code)
4. email_senders_code_activate(email, code) -> Activate
5. email_senders_list() -> Verify it appears
Tag-Based Segmentation 1. email_tags_create(name="Premium") -> Create tag
2. email_tags_emails_pin(tag_id, emails=[...]) -> Assign to subscribers
3. Use tag filters in campaign targeting
Clean Up Blacklist 1. email_blacklist_emails_list() -> Review blocked emails
2. email_blacklist_emails_delete(emails=[...]) -> Remove false positives
Pre-Campaign Readiness Check 1. email_balance_show() -> Sufficient credits?
2. email_senders_list() -> Sender verified?
3. email_blacklist_emails_list() -> Review blacklist
4. Proceed with campaign creation
Best Practices
Verify senders before creating campaigns — unverified senders block sending
Check balance regularly to avoid failed campaigns
Use tags for subscriber segmentation across all lists
Blacklist bounced emails to improve deliverability scores
Review email statistics to identify disengaged subscribers
Use email_emails_delete carefully — it removes from ALL lists permanently