Skip to main content
devtools24

Markdown إلى HTML بريد إلكتروني

تحويل Markdown إلى HTML بريد إلكتروني مع أنماط مضمنة. مثالي للنشرات الإخبارية وحملات البريد الإلكتروني.

Markdown Input0 chars
Preview

Supported Markdown:
  • • Headers: # H1, ## H2, ### H3
  • • Bold: **text** or __text__
  • • Italic: *text* or _text_
  • • Links: [text](url)
  • • Lists: - item or 1. item
  • • Blockquotes: > quote
  • • Inline code: `code`
  • • Horizontal rule: ---
Note: Generated HTML uses inline styles for maximum email client compatibility. Tables are used for layout to support Outlook.

Email HTML - التفاصيل التقنية

Email clients have limited CSS support and don't support external stylesheets. This tool generates HTML with inline styles and table-based layouts for maximum compatibility across Gmail, Outlook, and other clients.

بديل سطر الأوامر

# Using mjml for email templates
npm install mjml
mjml email.mjml -o email.html

# Using juice for CSS inlining
npm install juice
juice email.html > inlined.html