2020-08-21 09:16:23 +07:00
|
|
|
package templates
|
|
|
|
|
|
|
|
import (
|
|
|
|
"text/template"
|
|
|
|
)
|
|
|
|
|
2022-04-03 19:24:51 +07:00
|
|
|
// PlainTextEmailTemplateStep2 the template of email that the user will receive for identity verification.
|
|
|
|
var PlainTextEmailTemplateStep2 *template.Template
|
2020-08-21 09:16:23 +07:00
|
|
|
|
|
|
|
func init() {
|
2022-04-03 19:24:51 +07:00
|
|
|
t, err := template.New("text_email_template").Parse(emailPlainTextContentStep2)
|
2020-08-21 09:16:23 +07:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2022-04-03 19:24:51 +07:00
|
|
|
PlainTextEmailTemplateStep2 = t
|
2020-08-21 09:16:23 +07:00
|
|
|
}
|
|
|
|
|
2022-04-03 19:24:51 +07:00
|
|
|
const emailPlainTextContentStep2 = `
|
|
|
|
Your password has been successfully reset.
|
2020-08-21 09:16:23 +07:00
|
|
|
If you did not initiate the process your credentials might have been compromised. You should reset your password and contact an administrator.
|
|
|
|
|
2022-04-03 19:24:51 +07:00
|
|
|
This email was generated by a user with the IP {{.remoteIP}}.
|
2020-08-21 09:16:23 +07:00
|
|
|
|
2021-02-12 12:59:42 +07:00
|
|
|
Please contact an administrator if you did not initiate the process.
|
2020-08-21 09:16:23 +07:00
|
|
|
`
|