(c *macaron.Context, u User)
| 119 | } |
| 120 | |
| 121 | func SendActivateAccountMail(c *macaron.Context, u User) { |
| 122 | SendUserMail(c, u, tmplAuthActivate, u.GenerateEmailActivateCode(u.Email()), c.Tr("mail.activate_account"), "activate account") |
| 123 | } |
| 124 | |
| 125 | func SendResetPasswordMail(c *macaron.Context, u User) { |
| 126 | SendUserMail(c, u, tmplAuthResetPassword, u.GenerateEmailResetPasswordCode(u.Email()), c.Tr("mail.reset_password"), "reset password") |
no test coverage detected