diff options
Diffstat (limited to 'templates/mail')
-rw-r--r-- | templates/mail/notify/collaborator.tmpl | 18 | ||||
-rw-r--r-- | templates/mail/notify/mention.tmpl | 16 |
2 files changed, 34 insertions, 0 deletions
diff --git a/templates/mail/notify/collaborator.tmpl b/templates/mail/notify/collaborator.tmpl new file mode 100644 index 0000000000..0664b4c640 --- /dev/null +++ b/templates/mail/notify/collaborator.tmpl @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>{{.Subject}}</title> +</head> + +<body> + <p>You can now push to this repository.</p> + <p> + --- + <br> + View it on Gogs: + <br> + <a href="{{.AppUrl}}{{.RepoLink}}">{{.AppUrl}}{{.RepoLink}}</a> + </p> +</body> +</html> diff --git a/templates/mail/notify/mention.tmpl b/templates/mail/notify/mention.tmpl new file mode 100644 index 0000000000..be022d0dd7 --- /dev/null +++ b/templates/mail/notify/mention.tmpl @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>{{.Subject}}</title> +</head> + +<body> + <p>{{.ActUserName}} mentioned you.</p> + <p> + --- + <br> + <a href="{{.AppUrl}}{{.IssueLink}}">View it on Gogs</a>. + </p> +</body> +</html> |