Sending mails using Foundation templates

This commit is contained in:
2024-07-17 22:34:03 +02:00
parent d40233b4ba
commit b1d3095c89
5 changed files with 1582 additions and 13 deletions

View File

@ -63,8 +63,9 @@ type RoomRestriction struct {
// MailData holds an email message
type MailData struct {
To string
From string
Subject string
Content string
To string
From string
Subject string
Content string
Template string
}