At the top right of the screen, tap on your name and tap Settings in the menu, then on the settings page, tap Email templates.
Email template settings is where you can add additional email designs. You will need HTML and CSS skills to know how to make the changes. If you do not have these skills, then please contact our support team so that we can help you make the changes you need.
Tip: Websites like beefree.io are great for building custom HTML email templates, alternatively search the web for HTML email templates.
Creating your own templates
If you have HTML skills then you can create your own templates, the first step is to design the HTML email and test it with a few different email programs to ensure that it is readable and the design looks good on different devices. You may want to look at the existing templates in UCare to get an understanding of what the HTML code your template should look like.
Once you've created the HTML for the new email template you can add the following to the HTML:
- @Model.Subject - This will insert the email subject; this would typically be inserted inside the <head><title> tag.
- @Url("/email/" + Model.Slug) - This will insert the URL for the online version of the email, this will be handy if someone is having trouble reading an email in their email client.
- @Url("/email/unsubscribe/" + Model.Recipient.Email) - This will insert a URL that will let the recipient unsubscribe or update their details.
- @Transform(Model.Content) - This will format the email message and insert it in the template, the plain text that the user types will be transformed into HTML format.
If you have issues or more questions, please contact support.