system-prompts-and-models-o.../dealix/auto_client_acquisition/launch_ops/outreach_messages.py
Sami Assiri b13cb389cc feat(dealix): sync full Dealix package to repo
- API routers, ACA modules, integrations (draft operators)
- Docs, landing pages, scripts (launch readiness, scorecard)
- Tests and CI workflow updates for Dealix

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-01 21:01:17 +03:00

65 lines
3.1 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""First outreach batch — templates for warm outbound (manual send only)."""
from __future__ import annotations
from typing import Any
def build_first_twenty_outreach() -> dict[str, Any]:
return {
"count": 20,
"disclaimer_ar": "هذه قوالب للنسخ اليدوي — لا يُرسل من Dealix تلقائياً.",
"messages": [
{
"id": 1,
"audience_ar": "مؤسس B2B",
"subject_ar": "تجربة بيتا — ١٠ فرص خلال أسبوع",
"body_ar": (
"هلا [الاسم]، نجرب Dealix كمدير نمو عربي: نطلع لك فرصاً مناسبة، "
"نكتب رسائل عربية، وأنت توافق قبل أي تواصل. مهتم نعرض لك عينة قصيرة؟"
),
},
{
"id": 2,
"audience_ar": "وكالة تسويق",
"subject_ar": "Pilot مشترك مع وكالة",
"body_ar": (
"هلا [الاسم]، نبحث وكالة واحدة لتجربة Dealix على عميل حقيقي: "
"فرص + مسودات + Proof Pack. يناسبكم ديمو ١٥ دقيقة؟"
),
},
{
"id": 3,
"audience_ar": "شركة تدريب",
"subject_ar": "فرص شركات في قطاعكم",
"body_ar": (
"هلا [الاسم]، Dealix يساعد فرق التدريب تطلع فرص B2B مع سبب «لماذا الآن» "
"ومسودات عربية. نقدر نرسل لكم تشخيصاً مجانياً مختصراً؟"
),
},
{
"id": 4,
"audience_ar": "SaaS صغير",
"subject_ar": "Pipeline بدون فوضى قنوات",
"body_ar": (
"هلا [الاسم]، إذا عندكم قائمة عملاء أو leads، نقدر نصنّفها ونطلع أفضل أهداف "
"مع تقرير مخاطر — بدون إرسال واتساب بارد. مهتم؟"
),
},
{
"id": 5,
"audience_ar": "متابعة ١",
"subject_ar": "متابعة خفيفة",
"body_ar": "تذكير لطيف: إذا يناسبكم، أرسل لي قطاعكم ومدينتكم وأجهز عينة خلال ٢٤ ساعة.",
},
{
"id": 6,
"audience_ar": "متابعة ٢",
"subject_ar": "إغلاق مهذب",
"body_ar": "إذا التوقيت مو مناسب، أقدر أرجع بعد أسبوعين — أو أغلق الملف عندكم برسالة «لا شكراً».",
},
],
"note_ar": "كرّر وأكيّف الرسائل ٤–٦ لباقي الـ ٢٠ جهة — نفس النبرة الدافئة.",
"demo": True,
}