happyDomain/utils/mail.go

149 lines
3.8 KiB
Go
Raw Permalink Normal View History

2023-12-24 10:18:08 +00:00
// This file is part of the happyDomain (R) project.
// Copyright (c) 2020-2024 happyDomain
// Authors: Pierre-Olivier Mercier, et al.
2020-05-23 16:44:18 +00:00
//
2023-12-24 10:18:08 +00:00
// This program is offered under a commercial and under the AGPL license.
// For commercial licensing, contact us at <contact@happydomain.org>.
2020-05-23 16:44:18 +00:00
//
2023-12-24 10:18:08 +00:00
// For AGPL licensing:
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
2020-05-23 16:44:18 +00:00
//
2023-12-24 10:18:08 +00:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
2020-05-23 16:44:18 +00:00
//
2023-12-24 10:18:08 +00:00
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-05-23 16:44:18 +00:00
package utils
import (
"bytes"
"flag"
2020-05-23 16:44:18 +00:00
"io"
"net/mail"
"text/template"
2023-09-07 09:37:18 +00:00
"git.happydns.org/happyDomain/ui"
2021-07-06 19:15:02 +00:00
2020-05-23 16:44:18 +00:00
gomail "github.com/go-mail/mail"
"github.com/yuin/goldmark"
"github.com/yuin/goldmark/extension"
"github.com/yuin/goldmark/parser"
"github.com/yuin/goldmark/renderer/html"
)
// mailAddress defines an interface that handle mail.Address configuration
// throught custom flag.
type mailAddress struct {
*mail.Address
}
func (i *mailAddress) String() string {
if i.Address == nil {
return ""
}
return i.Address.String()
}
func (i *mailAddress) Set(value string) error {
v, err := mail.ParseAddress(value)
if err != nil {
return err
}
*i.Address = *v
return nil
}
type sendMethod interface {
PrepareAndSend(...*gomail.Message) error
}
2020-05-23 16:44:18 +00:00
var (
2020-07-21 02:14:23 +00:00
// MailFrom holds the content of the From field for all e-mails that
// will be send.
2021-12-31 14:52:15 +00:00
MailFrom = mail.Address{Name: "happyDomain", Address: "happydomain@localhost"}
2020-07-21 02:14:23 +00:00
// SendMethod is a pointer to the current global method used to send
// e-mails.
SendMethod sendMethod = &SystemSendmail{}
2020-05-23 16:44:18 +00:00
)
func init() {
flag.Var(&mailAddress{&MailFrom}, "mail-from", "Define the sender name and address for all e-mail sent")
}
2020-07-21 02:14:23 +00:00
// SendMail takes a content writen in Markdown to send it to the given user. It
// uses Markdown to create a HTML version of the message and leave the Markdown
// format in the text version. To perform sending, it relies on the SendMethod
// global variable.
2020-05-23 16:44:18 +00:00
func SendMail(to *mail.Address, subject, content string) (err error) {
m := gomail.NewMessage()
m.SetHeader("From", MailFrom.String())
m.SetHeader("To", to.String())
m.SetHeader("Subject", subject)
toName := to.Name
if len(toName) == 0 {
toName = to.Address
}
tplData := map[string]string{
"Lang": "en",
"To": toName,
"ToAddress": to.Address,
"Subject": subject,
"From": MailFrom.Name,
"FromAddress": MailFrom.Address,
"Content": content,
}
if t, err := template.New("mailText").Parse(mailTXTTpl); err != nil {
return err
} else {
m.SetBodyWriter("text/plain", func(w io.Writer) error {
return t.Execute(w, tplData)
})
}
// Convert text from Markdown to HTML
md := goldmark.New(
goldmark.WithExtensions(extension.GFM),
goldmark.WithParserOptions(
parser.WithAutoHeadingID(),
),
goldmark.WithRendererOptions(
html.WithHardWraps(),
html.WithXHTML(),
),
)
var buf bytes.Buffer
if err = md.Convert([]byte(content), &buf); err != nil {
return
}
2022-01-10 13:06:19 +00:00
if data, err := ui.GetEmbedFS().Open("dist/img/happydomain.png"); err == nil {
m.EmbedReader("happydomain.png", data)
2020-05-23 16:44:18 +00:00
}
if t, err := template.New("mailHTML").Parse(mailHTMLTpl); err != nil {
return err
} else {
m.AddAlternativeWriter("text/html", func(w io.Writer) error {
tplData["Content"] = buf.String()
return t.Execute(w, tplData)
})
}
if err = SendMethod.PrepareAndSend(m); err != nil {
2020-05-23 16:44:18 +00:00
return
}
return
}