Test mailer button. Addresses #1531
This commit is contained in:
parent
d324500959
commit
c27038e392
6 changed files with 708 additions and 907 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue