2021-10-31 14:46:23 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-10-31 14:46:23 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package email
|
|
|
|
|
|
|
|
import (
|
2022-01-31 10:46:20 +00:00
|
|
|
"errors"
|
2021-10-31 14:46:23 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2022-01-31 10:46:20 +00:00
|
|
|
"strings"
|
|
|
|
"text/template"
|
2021-10-31 14:46:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func loadTemplates(templateBaseDir string) (*template.Template, error) {
|
2022-04-29 10:00:25 +01:00
|
|
|
if !filepath.IsAbs(templateBaseDir) {
|
|
|
|
cwd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting current working directory: %s", err)
|
|
|
|
}
|
|
|
|
templateBaseDir = filepath.Join(cwd, templateBaseDir)
|
2021-10-31 14:46:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// look for all templates that start with 'email_'
|
2022-04-29 10:00:25 +01:00
|
|
|
return template.ParseGlob(filepath.Join(templateBaseDir, "email_*"))
|
2021-10-31 14:46:23 +00:00
|
|
|
}
|
|
|
|
|
2022-01-31 10:46:20 +00:00
|
|
|
// https://datatracker.ietf.org/doc/html/rfc2822
|
|
|
|
// I did not read the RFC, I just copy and pasted from
|
|
|
|
// https://pkg.go.dev/net/smtp#SendMail
|
|
|
|
// and it did seem to work.
|
|
|
|
func assembleMessage(mailSubject string, mailBody string, mailTo string, mailFrom string) ([]byte, error) {
|
|
|
|
|
|
|
|
if strings.Contains(mailSubject, "\r") || strings.Contains(mailSubject, "\n") {
|
|
|
|
return nil, errors.New("email subject must not contain newline characters")
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.Contains(mailFrom, "\r") || strings.Contains(mailFrom, "\n") {
|
|
|
|
return nil, errors.New("email from address must not contain newline characters")
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.Contains(mailTo, "\r") || strings.Contains(mailTo, "\n") {
|
|
|
|
return nil, errors.New("email to address must not contain newline characters")
|
|
|
|
}
|
|
|
|
|
|
|
|
// normalize the message body to use CRLF line endings
|
|
|
|
mailBody = strings.ReplaceAll(mailBody, "\r\n", "\n")
|
|
|
|
mailBody = strings.ReplaceAll(mailBody, "\n", "\r\n")
|
2021-10-31 14:46:23 +00:00
|
|
|
|
|
|
|
msg := []byte(
|
2022-01-31 10:46:20 +00:00
|
|
|
"To: " + mailTo + "\r\n" +
|
|
|
|
"Subject: " + mailSubject + "\r\n" +
|
|
|
|
"\r\n" +
|
|
|
|
mailBody + "\r\n",
|
|
|
|
)
|
2021-10-31 14:46:23 +00:00
|
|
|
|
2022-01-31 10:46:20 +00:00
|
|
|
return msg, nil
|
2021-10-31 14:46:23 +00:00
|
|
|
}
|