Skip to main content

SF-0100 · Concept · Easy

How many different types of email templates we can use in workflow email alert?

✓ Verified by Vikas Singhal · Last reviewed 5/17/2026 · Updated for Spring '26

Workflow Email Alerts (and the email-alert nodes in Process Builder, Flow, and approval steps that use Classic email-alert actions) can use four types of email templates. The list is from Salesforce Classic — Lightning Email Templates aren’t supported in workflow email alerts.

The four types

TypeWhat it isWhen to use
TextPlain text only, no markupSimple notifications, mobile-friendly, accessibility
HTML (with Letterhead)Branded HTML built on a Letterhead component for header/footerCorporate branded emails
Custom HTML (without Letterhead)Free-form HTML you write yourselfFull control over layout, no Letterhead constraints
VisualforceA Visualforce page used as the templateDynamic content driven by Apex — e.g. multi-language, complex tables

Quick decision flow

  1. Need branded design with consistent header/footer? → HTML with Letterhead
  2. Need full HTML control? → Custom HTML
  3. Need to render data with Apex logic (loops over child records, complex formatting)? → Visualforce
  4. Need plain text only (mobile, SMS-style)? → Text

Why Lightning Email Templates aren’t here

Lightning Email Templates were introduced for the Email Composer in Lightning Experience. They use a different storage model and reference the Lightning UI. Workflow email alerts pre-date Lightning and use the Classic template engine. You can’t pick a Lightning Email Template from a workflow email alert’s template selector.

Template merge fields

All four types support merge fields — references to fields on the triggering record:

Hi {!Contact.FirstName},

Your case {!Case.CaseNumber} has been escalated.

— {!Case.Owner.Name}

You can reach into related records, but cross-object references must be set up correctly.

Limits worth knowing

  • One template per email alert — you can’t send a mix
  • Up to 5 recipients per alert from the Recipient picker (plus you can add additional emails to the CC field)
  • Daily limit on email alerts depends on org type — usually 5,000/day per user

What interviewers want

  • The count: four (don’t forget Custom HTML as a separate type from HTML-with-Letterhead)
  • The names of all four
  • Bonus: note that Lightning Email Templates aren’t supported in workflow alerts — a common follow-up

Verified against: Salesforce Help — Email Templates. Last reviewed 2026-05-17 for Spring ‘26 release.