Configure email message templates
Prerequisite
- A custom theme created and bound to one or more workspaces.
Base Email Template
Edit the base_email.tmpl
file to define global styles and shared layout across all emails.
Example: Add a Social Media Footer
- Go to Components →
base_email.tmpl
- Add the following below the
footer-logo
div
:
FIND US ON:
<a href="https://twitter.com/CloudentityTEAM">
<img class="footer-image" src="https://www.svgrepo.com/show/416494/connect-media-networking.svg">
</a>
<a href="https://github.com/cloudentity">
<img class="footer-image" src="https://www.svgrepo.com/show/416517/code-github-hosting.svg">
</a>
- Optionally, add CSS styles inside a
<style>
tag:
<style type="text/css">
.footer-image {
max-height: 32px;
margin: 5px;
}
</style>
- Save and preview any email message to validate layout.
Customize Individual Email Templates
- Go to Messages → EMAILS
- Select a message template, such as Activate Account With Code
- Modify the HTML content
Example:
Here is your account activation code!
- Save your changes