1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Test mailer button. Addresses #1531

This commit is contained in:
Josh Frye
2016-02-18 17:13:12 -05:00
parent d324500959
commit c27038e392
6 changed files with 708 additions and 907 deletions

View File

@@ -183,3 +183,9 @@ func SendCollaboratorMail(r macaron.Render, u, doer *models.User, repo *models.R
SendAsync(msg)
return nil
}
func SendTestMail(u *models.User) {
msg := NewMessage([]string{u.Email}, "Gogs Test Email!", "Gogs Test Email!")
SendAsync(msg)
}