diff options
author | Josh Frye <joshfng@gmail.com> | 2016-02-18 17:13:12 -0500 |
---|---|---|
committer | Josh Frye <joshfng@gmail.com> | 2016-02-24 09:48:05 -0500 |
commit | c27038e392c87634c7a85674eeb2336c5074e5a3 (patch) | |
tree | c7c5ebb74c5d4639550eea9f5042073f125466ed /routers/admin/admin.go | |
parent | d324500959c06e975921790f8770aa5d1bdf2344 (diff) | |
download | gitea-c27038e392c87634c7a85674eeb2336c5074e5a3.tar.gz gitea-c27038e392c87634c7a85674eeb2336c5074e5a3.zip |
Test mailer button. Addresses #1531
Diffstat (limited to 'routers/admin/admin.go')
-rw-r--r-- | routers/admin/admin.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/routers/admin/admin.go b/routers/admin/admin.go index 27f2fa5b24..721a9664c1 100644 --- a/routers/admin/admin.go +++ b/routers/admin/admin.go @@ -16,6 +16,7 @@ import ( "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/cron" + "github.com/gogits/gogs/modules/mailer" "github.com/gogits/gogs/modules/middleware" "github.com/gogits/gogs/modules/process" "github.com/gogits/gogs/modules/setting" @@ -174,6 +175,13 @@ 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) + + ctx.Redirect(setting.AppSubUrl + "/admin/config") +} + func Config(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("admin.config") ctx.Data["PageIsAdmin"] = true |