(c *macaron.Context, u User)
| 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") |
| 127 | } |
| 128 | |
| 129 | // SendActivateAccountMail sends confirmation email. |
| 130 | func SendActivateEmailMail(c *macaron.Context, u User, email string) { |
no test coverage detected