16 lines
477 B
Go
16 lines
477 B
Go
package templates
|
|
|
|
// Template File Names.
|
|
const (
|
|
TemplateNameEmailEnvelope = "Envelope.tmpl"
|
|
TemplateNameEmailIdentityVerificationHTML = "IdentityVerification.html"
|
|
TemplateNameEmailIdentityVerificationTXT = "IdentityVerification.txt"
|
|
TemplateNameEmailPasswordResetHTML = "PasswordReset.html"
|
|
TemplateNameEmailPasswordResetTXT = "PasswordReset.txt"
|
|
)
|
|
|
|
// Template Category Names.
|
|
const (
|
|
TemplateCategoryNotifications = "notification"
|
|
)
|