From baaf6046a1b0b81b91c76ecc259a13f9eb1c5cdb Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 24 Feb 2016 23:59:17 -0500 Subject: Minor fix for #2660 --- routers/admin/admin.go | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'routers') diff --git a/routers/admin/admin.go b/routers/admin/admin.go index 721a9664..db86abb8 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") } -- cgit v1.2.3