forked from owncloud/ocis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The email HTML templates added owncloud#6146
- Loading branch information
Showing
13 changed files
with
246 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
services/notifications/pkg/email/templates/common/email.footer.html.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{{define "footer"}} | ||
<footer> | ||
<br> | ||
<br> | ||
--- <br> | ||
ownCloud - Store. Share. Work.<br> | ||
<a href="https://owncloud.com">https://owncloud.com</a> | ||
</footer> | ||
{{end}} |
16 changes: 16 additions & 0 deletions
16
services/notifications/pkg/email/templates/shares/shareCreated.email.body.html.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
</head> | ||
<body> | ||
<p> | ||
{{ .Greeting }} | ||
<br> | ||
<br> | ||
{{ .MessageBody }} | ||
<br> | ||
<br> | ||
{{ .CallToAction }} | ||
</p> | ||
{{template "footer"}} | ||
</body> | ||
</html> |
13 changes: 13 additions & 0 deletions
13
services/notifications/pkg/email/templates/shares/shareExpired.email.body.html.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
</head> | ||
<body> | ||
<p> | ||
{{ .Greeting }} | ||
<br> | ||
<br> | ||
{{ .MessageBody }} | ||
</p> | ||
{{template "footer"}} | ||
</body> | ||
</html> |
13 changes: 13 additions & 0 deletions
13
services/notifications/pkg/email/templates/spaces/membershipExpired.email.body.html.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
</head> | ||
<body> | ||
<p> | ||
{{ .Greeting }} | ||
<br> | ||
<br> | ||
{{ .MessageBody }} | ||
</p> | ||
{{template "footer"}} | ||
</body> | ||
</html> |
16 changes: 16 additions & 0 deletions
16
services/notifications/pkg/email/templates/spaces/sharedSpace.email.body.html.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
</head> | ||
<body> | ||
<p> | ||
{{ .Greeting }} | ||
<br> | ||
<br> | ||
{{ .MessageBody }} | ||
<br> | ||
<br> | ||
{{ .CallToAction }} | ||
</p> | ||
{{template "footer"}} | ||
</body> | ||
</html> |
Oops, something went wrong.