diff options
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 |