package templates import ( "text/template" ) // EmailTemplate the template of email that the user will receive for identity verification. var EmailTemplate *template.Template func init() { t, err := template.New("email_template").Parse(string(emailContent)) if err != nil { panic(err) } EmailTemplate = t } const emailContent = ` Authelia
 

{{.title}}

 
 
 
This email has been sent to you in order to validate your identity. If you did not initiate the process your credentials might have been compromised. You should reset your password and contact an administrator.
 
{{.button}}
 
 
 
 
Please ignore this email if you did not initiate the process.
`