Skip to main content
Email Templates allow you to create, save, and reuse email designs.
  1. Click Create template from the email templates page
  2. Use the block-based editor to compose your email content and design
  3. Click the Save button to sync your changes to AWS SES
  4. Use the template when sending emails
After saving your template, you can send emails using the AWS SES API. The template is stored in AWS SES with the name format: sendbase-<template id>.
aws sesv2 send-email \
  --region "<your-region>" \
  --from-email-address "<from-email-address>" \
  --destination "ToAddresses=<recipient-email-address>" \
  --content "Template={TemplateName=<template-name>,TemplateData='{}'}"
If you’d like to manage the content by git, copy the HTML and plain text using the Copy HTML button from the test email actions menu.

Auto-Save

The editor automatically saves your changes to the database as you type (with a 1-second debounce). These are stored as “dirty” values and don’t sync to AWS SES until you explicitly click Save.

Test Emails

Send test emails directly from the template editor to preview your design. Test emails use your current unsaved changes, allowing you to test before committing to AWS SES.