diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2016-12-20 10:15:03 -0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-20 10:15:03 -0200 |
commit | 952587dbae987e05fb36f0ff56bf5eff92ae1080 (patch) | |
tree | fd3835221a254205d6556c505817df3dbc45f640 | |
parent | 6ade13e86ee494ac10b36454285354dbfe36d9c0 (diff) | |
parent | 1d30457a943f5cb24fe28546d122ddeab960a180 (diff) | |
download | gitea-952587dbae987e05fb36f0ff56bf5eff92ae1080.tar.gz gitea-952587dbae987e05fb36f0ff56bf5eff92ae1080.zip |
Merge pull request #422 from mjwwit/master
Change test mail subject and body to 'Gitea Test Mail!'
-rw-r--r-- | models/mail.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/mail.go b/models/mail.go index a5e9bd551f..8f54d6651f 100644 --- a/models/mail.go +++ b/models/mail.go @@ -40,7 +40,7 @@ func InitMailRender(tmpls *template.Template) { // SendTestMail sends a test mail func SendTestMail(email string) error { - return gomail.Send(&mailer.Sender{}, mailer.NewMessage([]string{email}, "Gogs Test Email!", "Gogs Test Email!").Message) + return gomail.Send(&mailer.Sender{}, mailer.NewMessage([]string{email}, "Gitea Test Email!", "Gitea Test Email!").Message) } // SendUserMail sends a mail to the user |