package templates
import (
"text/template"
)
// HTMLEmailTemplateStep2 the template of email that the user will receive for identity verification.
var HTMLEmailTemplateStep2 *template.Template
func init() {
t, err := template.New("html_email_template").Parse(emailHTMLContentStep2)
if err != nil {
panic(err)
}
HTMLEmailTemplateStep2 = t
}
const emailHTMLContentStep2 = `
Authelia
|
Hi {{.displayName}}
Your password has been successfully reset.
If you did not initiate the process your credentials might have been compromised. You should reset your password and contact an administrator.
|
|
|
|
|
Please contact an administrator if you did not initiate the process.
|
|
This email was generated by some with the IP address {{.remoteIP}}.
|
|
|
|
`