Support Center
Email System
Saber comes with a fully featured email system that is used to send out automated emails to users based on various actions that users take when interacting with your website.
Email Clients
Saber comes with a SMTP email client that can be set up to send emails via SMTP protocol. Developers are able to create their own Email Clients to access 3rd party email services in ways other than the SMTP protocol.
Email Actions
Saber comes with various email actions that are triggered based on the actions that users take when interacting with your website. For example, when a user signs up for a new account, the signup action is executed and an account verification email is sent to the user.
Email Templates
Each email action uses an associated HTML Template to generate the email body with. Based on the action, an email template will utilize various mustache variables to populate the email body with unique content for the user. You can edit any of these templates within Saber by opening your File Browser and navigating to the emails folder. Below, you'll find a list of email templates that are used by Saber to send out emails.
Sign Up Email Template
This email template is used when sending out a signup email to all new users. This email will contain a unique URL that is used to activate the new user's account. Once they activate their account, they will be able to log into their account.
{{name}} | The user's full name that they provided when signing up for a new account |
{{url}} | The URL provided that will allow the user to activate their account. This URL should be used within an HTML anchor link. |
Account Activation Email Template
This email template is used when the user manually requests to activate their account. This email will contain a unique URL that is used to activate the new user's account. Once they activate their account, they will be able to log into their account.
{{name}} | The user's full name that they provided when signing up for a new account |
{{url}} | The URL provided that will allow the user to activate their account. This URL should be used within an HTML anchor link. |
Forgot Password Email Template
This email template is used when sending out a signup email to all new users. This email will contain a unique URL that will take the user to a web form where they will be able to change their account password. Once they update their password, they will be able to log into their account.
{{name}} | The user's full name that they provided when signing up for a new account |
{{url}} | The URL provided that will allow the user to change their account password. This URL should be used within an HTML anchor link. |