package email import ( "fmt" "strings" ) const mylomen_code_email_template = ` code
Your verification code to reset your password

%s

Please complete the account verification process in one hours!
IMPORTANT:
Please do not share this email with anyone!
This email was automatically generated, please do not reply.
If you do not know why you have received this email, please discard it.
` func SendEmailVerifyCodeByEmail(code string, address ...string) error { content := fmt.Sprintf(mylomen_code_email_template, strings.TrimSpace(code)) return sendNoticeEmail( "🎉 Your verification code to reset your password", content, address...) }