diff options
author | Josh Frye <joshfng@gmail.com> | 2016-02-18 15:00:47 -0500 |
---|---|---|
committer | Josh Frye <joshfng@gmail.com> | 2016-02-18 16:08:20 -0500 |
commit | 0f1b26ed1e7242c37a2c014e0a4c2955f266b3a0 (patch) | |
tree | 01df0c4b53203442fb4632146b0d8bbb8e3633f0 /modules/mailer | |
parent | 2fdf8fc938295b95cbe6efb7cddb1b87c2fb81ee (diff) | |
download | gitea-0f1b26ed1e7242c37a2c014e0a4c2955f266b3a0.tar.gz gitea-0f1b26ed1e7242c37a2c014e0a4c2955f266b3a0.zip |
Fix issue email formatting. Addresses #2331
Diffstat (limited to 'modules/mailer')
-rw-r--r-- | modules/mailer/mail.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/mailer/mail.go b/modules/mailer/mail.go index 456f850338..ca5618f1bc 100644 --- a/modules/mailer/mail.go +++ b/modules/mailer/mail.go @@ -7,6 +7,7 @@ package mailer import ( "fmt" "path" + "strings" "gopkg.in/macaron.v1" @@ -125,7 +126,7 @@ func SendIssueNotifyMail(u, owner *models.User, repo *models.Repository, issue * subject := fmt.Sprintf("[%s] %s (#%d)", repo.Name, issue.Name, issue.Index) content := fmt.Sprintf("%s<br>-<br> <a href=\"%s%s/%s/issues/%d\">View it on Gogs</a>.", - base.RenderSpecialLink([]byte(issue.Content), owner.Name+"/"+repo.Name, repo.ComposeMetas()), + base.RenderSpecialLink([]byte(strings.Replace(issue.Content, "\n", "<br>", -1)), owner.Name+"/"+repo.Name, repo.ComposeMetas()), setting.AppUrl, owner.Name, repo.Name, issue.Index) msg := NewMessage(tos, subject, content) msg.Info = fmt.Sprintf("Subject: %s, issue notify", subject) |