How to markup in mail

You're referring to formatting text in an email!

Most email clients and web-based email services support basic text formatting using HTML and Markdown. Here are some common markup examples:

HTML

  1. Bold: <b>text</b> or <strong>text</strong>
  2. Italic: <i>text</i> or <em>text</em>
  3. Underline: <u>text</u>
  4. Strikethrough: <s>text</s>
  5. Links: <a href="https://www.example.com">text</a>
  6. Images: <img src="image_url" alt="image_description">
  7. Lists:
    • Ordered list: <ol><li>item 1</li><li>item 2</li></ol>
    • Unordered list: <ul><li>item 1</li><li>item 2</li></ul>
  8. Headings:
    • H1: <h1>heading 1</h1>
    • H2: <h2>heading 2</h2>
    • H3: <h3>heading 3</h3>

Markdown

  1. Bold: **text** or __text__
  2. Italic: *text* or _text_
  3. Headers:
    • H1: # heading 1
    • H2: ## heading 2
    • H3: ### heading 3
  4. Lists:
    • Ordered list: 1. item 1, 2. item 2, etc.
    • Unordered list: - item 1, - item 2, etc.
  5. Links: [text](https://www.example.com)
  6. Images: [image](image_url)

Keep in mind that not all email clients or services support all of these markup options. Some may have specific formatting options or limitations. It's always a good idea to test your email formatting before sending it to ensure it looks as intended.