19 lines
358 B
Go
19 lines
358 B
Go
package templates
|
|
|
|
const (
|
|
extText = ".txt"
|
|
extHTML = ".html"
|
|
)
|
|
|
|
// Template File Names.
|
|
const (
|
|
TemplateNameEmailIdentityVerification = "IdentityVerification"
|
|
TemplateNameEmailPasswordReset = "PasswordReset"
|
|
TemplateNameEmailEvent = "Event"
|
|
)
|
|
|
|
// Template Category Names.
|
|
const (
|
|
TemplateCategoryNotifications = "notification"
|
|
)
|