vikunja/pkg/mail/send_mail.go

125 lines
2.9 KiB
Go
Raw Normal View History

2020-02-07 16:27:45 +00:00
// Vikunja is a to-do list application to facilitate your life.
2021-02-02 19:19:13 +00:00
// Copyright 2018-2021 Vikunja and contributors. All rights reserved.
2018-11-26 20:17:33 +00:00
//
// This program is free software: you can redistribute it and/or modify
2020-12-23 15:41:52 +00:00
// it under the terms of the GNU Affero General Public Licensee as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
2018-11-26 20:17:33 +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
2020-12-23 15:41:52 +00:00
// GNU Affero General Public Licensee for more details.
2018-11-26 20:17:33 +00:00
//
2020-12-23 15:41:52 +00:00
// You should have received a copy of the GNU Affero General Public Licensee
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-11-26 20:17:33 +00:00
2018-10-27 09:33:28 +00:00
package mail
import (
"embed"
"io"
"code.vikunja.io/api/pkg/config"
"code.vikunja.io/api/pkg/log"
2022-06-19 13:57:00 +00:00
"code.vikunja.io/api/pkg/version"
"github.com/wneessen/go-mail"
2018-10-27 09:33:28 +00:00
)
// Opts holds infos for a mail
type Opts struct {
From string
2018-10-27 09:33:28 +00:00
To string
Subject string
Message string
HTMLMessage string
ContentType ContentType
Boundary string
Headers []*header
Embeds map[string]io.Reader
EmbedFS map[string]*embed.FS
2018-10-27 09:33:28 +00:00
}
// ContentType represents mail content types
type ContentType int
// Enumerate all the team rights
const (
ContentTypePlain ContentType = iota
ContentTypeHTML
ContentTypeMultipart
)
type header struct {
2022-06-19 13:57:00 +00:00
Field mail.Header
2018-10-27 09:33:28 +00:00
Content string
}
2022-06-19 13:57:00 +00:00
// SendTestMail sends a test mail to a recipient.
// It works without a queue.
func SendTestMail(opts *Opts) error {
if config.MailerHost.GetString() == "" {
log.Warning("Mailer seems to be not configured! Please see the config docs for more details.")
return nil
}
2022-06-19 13:57:00 +00:00
c, err := getClient()
if err != nil {
return err
}
2022-06-19 13:57:00 +00:00
m := getMessage(opts)
2022-06-19 13:57:00 +00:00
return c.DialAndSend(m)
}
2022-06-19 13:57:00 +00:00
func getMessage(opts *Opts) *mail.Msg {
m := mail.NewMsg()
m.SetUserAgent("Vikunja " + version.Version)
if opts.From == "" {
opts.From = "Vikunja <" + config.MailerFromEmail.GetString() + ">"
}
2022-06-19 13:57:00 +00:00
_ = m.From(opts.From)
_ = m.To(opts.To)
m.Subject(opts.Subject)
2018-10-27 09:33:28 +00:00
for _, h := range opts.Headers {
m.SetGenHeader(h.Field, h.Content)
2018-10-27 09:33:28 +00:00
}
for name, content := range opts.Embeds {
m.EmbedReader(name, content)
}
for name, fs := range opts.EmbedFS {
err := m.EmbedFromEmbedFS(name, fs)
if err != nil {
log.Errorf("Error embedding %s via embed.FS into mail: %v", err)
}
}
2018-10-27 09:33:28 +00:00
switch opts.ContentType {
case ContentTypePlain:
2022-06-19 13:57:00 +00:00
m.SetBodyString("text/plain", opts.Message)
2018-10-27 09:33:28 +00:00
case ContentTypeHTML:
2022-06-19 13:57:00 +00:00
m.SetBodyString("text/html", opts.Message)
2018-10-27 09:33:28 +00:00
case ContentTypeMultipart:
2022-06-19 13:57:00 +00:00
m.SetBodyString("text/plain", opts.Message)
m.AddAlternativeString("text/html", opts.HTMLMessage)
2018-10-27 09:33:28 +00:00
}
2022-06-19 13:57:00 +00:00
return m
2018-10-27 09:33:28 +00:00
}
// SendMail puts a mail in the queue
func SendMail(opts *Opts) {
if isUnderTest {
sentMails = append(sentMails, opts)
2018-10-27 09:33:28 +00:00
return
}
2022-06-19 13:57:00 +00:00
m := getMessage(opts)
Queue <- m
2018-10-27 09:33:28 +00:00
}