mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
80d6c6d7de
* Unexport SendUserMail * Instead of "[]*models.User" or "[]string" lists infent "[]*MailRecipient" for mailer * adopt * code format * TODOs for "i18n" * clean * no fallback for lang -> just use english * lint * exec testComposeIssueCommentMessage per lang and use only emails * rm MailRecipient * Dont reload from users from db if you alredy have in ram * nits * minimize diff Signed-off-by: 6543 <6543@obermui.de> * localize subjects * linter ... * Tr extend * start tmpl edit ... * Apply suggestions from code review * use translation.Locale * improve mailIssueCommentBatch Signed-off-by: Andrew Thornton <art27@cantab.net> * add i18n to datas Signed-off-by: Andrew Thornton <art27@cantab.net> * a comment Co-authored-by: Andrew Thornton <art27@cantab.net>
18 lines
338 B
Handlebars
18 lines
338 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>{{.Subject}}</title>
|
|
</head>
|
|
|
|
<body>
|
|
<p>{{.Subject}}.
|
|
To accept or reject it visit <a href="{{.Link}}">{{.Repo}}</a> or just ignore it.
|
|
<p>
|
|
---
|
|
<br>
|
|
<a href="{{.Link}}">View it on {{AppName}}</a>.
|
|
</p>
|
|
</body>
|
|
</html>
|