diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-02-18 17:48:36 +0800 |
---|---|---|
committer | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-02-18 17:48:36 +0800 |
commit | f85b17a00e0a484a870511726118a36375c3d97a (patch) | |
tree | ebfdd4d02871e701f10c172531ec79e6f2d74874 /internal/mailer/mail.go | |
parent | 33b6478cc7f1344636c04103a87f7d1a1dc3ed95 (diff) |
mailer: fix template not found error
Diffstat (limited to 'internal/mailer/mail.go')
-rw-r--r-- | internal/mailer/mail.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/mailer/mail.go b/internal/mailer/mail.go index 83f7b44f..1cb01a57 100644 --- a/internal/mailer/mail.go +++ b/internal/mailer/mail.go @@ -43,6 +43,7 @@ func render(tpl string, data map[string]interface{}) (string, error) { opt := &macaron.RenderOptions{ Directory: path.Join(setting.StaticRootPath, "templates/mail"), AppendDirectories: []string{path.Join(setting.CustomPath, "templates/mail")}, + Extensions: []string{".tmpl", ".html"}, Funcs: []template.FuncMap{map[string]interface{}{ "AppName": func() string { return setting.AppName |