diff options
Diffstat (limited to 'routers/admin/admin.go')
-rw-r--r-- | routers/admin/admin.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/routers/admin/admin.go b/routers/admin/admin.go index 721a9664c1..db86abb84a 100644 --- a/routers/admin/admin.go +++ b/routers/admin/admin.go @@ -175,9 +175,14 @@ func Dashboard(ctx *middleware.Context) { ctx.HTML(200, DASHBOARD) } -func TestMailer(ctx *middleware.Context) { - // send a test email to the user's email address and redirect back to Config - mailer.SendTestMail(ctx.User) +func SendTestMail(ctx *middleware.Context) { + email := ctx.Query("email") + // Send a test email to the user's email address and redirect back to Config + if err := mailer.SendTestMail(email); err != nil { + ctx.Flash.Error(ctx.Tr("admin.config.test_mail_failed", email, err)) + } else { + ctx.Flash.Info(ctx.Tr("admin.config.test_mail_sent", email)) + } ctx.Redirect(setting.AppSubUrl + "/admin/config") } |