Skip to content
Marketing Automation

Marketing Automation

Discover more in every scroll

  • Home
  • About Myself
  • Consultation
  • Trainings
  • Contact
  • Guides
    • AmpScript Guide
  • Blogs
    • Dataviews
    • Synchronized Data Extensions
    • Email Studio

Salesforce Marketing Cloud Email Studio: Complete Guide to Email Templates

Posted on May 5, 2025May 5, 2025 by admin

Email templates in Salesforce Marketing Cloud Email Studio offer a quick and scalable way to build beautiful, responsive, and branded emails. Templates save time, ensure design consistency, and allow teams to collaborate more efficiently.

In this blog, we’ll explore all four types of templates available in SFMC:

  • Basic Templates
  • Empty Templates
  • Themed Templates
  • Saved Templates

We’ll also provide AMPscript, HTML/CSS, SQL, and API examples wherever relevant.


πŸ”Ή Basic Templates

Basic templates are pre-designed layouts with a balance of content and design. They’re ideal for marketers who want a ready-to-use format.

Examples:

  • 1-3-1 Column Image
  • Hero 1-2-3 Column
  • Hero 1-3 Column
  • Hero 1-3-2 Column

βœ… Use Cases:

  • Newsletters (e.g., 1-3-1 Column Image for multi-topic updates)
  • Promotional Emails with CTAs (Hero 1 Column + Buttons)
  • Event Announcements

🧩 How to Use:

  • Drag and drop content blocks into sections
  • Modify button links, images, and texts
  • Personalize with AMPscript:
%%[SET @name = FirstName]%%
<p>Hello %%=v(@name)=%%, welcome to our weekly deals!</p>

πŸ”Ή Empty Templates

Empty templates are layout frameworks without any design or branding. They are perfect for designers and developers who want full control.

Examples:

  • Blank Page
  • Left Sidebar 3 Row
  • Basic 2 Column

βœ… Use Cases:

  • Custom Branded Emails
  • Transactional Emails using REST API
  • Template Prototyping

🧩 How to Use:

  • Add HTML blocks with your code
  • Apply custom CSS for styling
<table width="100%" style="font-family: Arial;">
<tr><td><h1>Welcome to Our Store!</h1></td></tr>
</table>

πŸ›  Integration with AMPscript

You can inject personalized data like this:

%%[SET @product = AttributeValue("LastProductViewed")]%%
<p>You may also like: %%=v(@product)=%%</p>

πŸ”Ή Themed Templates

These templates are styled with color schemes and industry-specific layouts.

Examples:

  • Business 1, 2, 3
  • Featured Newsletter 1, 2, 3
  • Financial Services 1, 2

βœ… Use Cases:

  • Financial Updates for banking, insurance
  • Corporate Communication
  • Product Launches with banners + CTAs

πŸ’‘ Bonus: Built-in responsive design

These templates are mobile-friendly out of the box. You can edit them using the visual editor without touching code.


πŸ”Ή Saved Templates

Saved templates are custom layouts you or your team have saved after design.

βœ… Use Cases:

  • Reusable Campaign Templates
  • Seasonal Designs (e.g., Black Friday, Summer Sale)
  • Brand Guidelines Compliance

🧩 Advanced Use Case – Use in API

Using the Email REST API:

POST /messaging/v1/email/messages
{
  "definitionKey": "my-saved-template",
  "recipients": [
    {
      "contactKey": "12345",
      "to": "user@example.com",
      "attributes": {
        "FirstName": "Suhas",
        "CouponCode": "SAVE20"
      }
    }
  ]
}

πŸ“Š SQL Query Use Case

Identify top-performing Email Templates by EmailID:

SELECT EmailID, COUNT(*) AS TotalSends
FROM _Job
GROUP BY EmailID
ORDER BY TotalSends DESC

🎨 Styling with CSS

In Blank or Empty templates, add inline or embedded CSS:

<style>
  h1 { color: #333; font-size: 28px; }
  .btn { background-color: #007bff; color: #fff; padding: 10px; }
</style>

βœ… Best Practices

  • Use Themed templates if you want quick, professional layouts.
  • Use Empty templates if you have in-house designers or strict branding.
  • Use Saved templates for efficiency and consistency.
  • Always test with Preview & Test tab to ensure mobile responsiveness.

Posted in Email StudioTagged AMPscript in SFMC templates, basic templates SFMC, create email template Salesforce, email personalization SFMC, Email Studio template guide, empty templates Marketing Cloud, how to use saved templates SFMC, responsive email SFMC, Salesforce Marketing Cloud email templates, SFMC email studio templates, SFMC REST API email send, themed templates SFMC

Post navigation

Previous: Salesforce Marketing Cloud Email Studio – Full Guide to Content Builder Blocks
Next: Salesforce Marketing Cloud Email Studio: Complete Guide to Layouts for Email Templates

About Myself

Suhas Ganjare

Suhas Ganjare

CRM and Digital Consultant

Suhas Ganjare is a passionate cricketer, Salesforce Marketing Cloud Developer & Consultant, and a skilled Salesforce Certified Data Cloud Consultant. With expertise in Eloqua Marketing Automation, Salesforce Administration, and digital marketing, Suhas has built a diverse career helping businesses streamline and elevate their marketing strategies. An accomplished professional, Suhas combines technical proficiency with creative insight to deliver data-driven campaigns and automation solutions that drive meaningful engagement. Beyond his professional pursuits, Suhas is an author and an avid sports enthusiast, finding inspiration and balance on the cricket field.

Trending Topics

  • Salesforce Marketing Cloud Email Studio: Complete Guide to Layouts for Email Templates
  • Salesforce Marketing Cloud Email Studio: Complete Guide to Email Templates
  • Salesforce Marketing Cloud Email Studio – Full Guide to Content Builder Blocks
  • πŸ” What is a Template-Based Email in SFMC?
  • Email Studio and Content Builder – Marketing Cloud Basics Explained

Related Posts

  • Blogs
  • Email Studio
3 min read

What is Email Studio in Salesforce Marketing Cloud?

  • admin
  • April 3, 2025
  • Blogs
  • Email Studio
3 min read

Email Studio and Content Builder – Marketing Cloud Basics Explained

  • admin
  • April 3, 2025
  • Email Studio
2 min read

Salesforce Marketing Cloud Email Studio: Complete Guide to Layouts for Email Templates

  • admin
  • May 5, 2025
  • Blogs
  • Email Studio
4 min read

Salesforce Marketing Cloud Email Studio – Full Guide to Content Builder Blocks

  • admin
  • April 5, 2025
Copyright © 2025 Marketing Automation