mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
#1649 Using commas to delineate emails
This commit is contained in:
parent
6a1907d994
commit
b003b18788
1 changed files with 3 additions and 3 deletions
|
@ -80,7 +80,7 @@ func processMailQueue() {
|
||||||
select {
|
select {
|
||||||
case msg := <-mailQueue:
|
case msg := <-mailQueue:
|
||||||
num, err := Send(msg)
|
num, err := Send(msg)
|
||||||
tos := strings.Join(msg.To, "; ")
|
tos := strings.Join(msg.To, ", ")
|
||||||
info := ""
|
info := ""
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if len(msg.Info) > 0 {
|
if len(msg.Info) > 0 {
|
||||||
|
@ -206,7 +206,7 @@ func sendMail(settings *setting.Mailer, recipients []string, msgContent []byte)
|
||||||
|
|
||||||
// Direct Send mail message
|
// Direct Send mail message
|
||||||
func Send(msg *Message) (int, error) {
|
func Send(msg *Message) (int, error) {
|
||||||
log.Trace("Sending mails to: %s", strings.Join(msg.To, "; "))
|
log.Trace("Sending mails to: %s", strings.Join(msg.To, ", "))
|
||||||
|
|
||||||
// get message body
|
// get message body
|
||||||
content := msg.Content()
|
content := msg.Content()
|
||||||
|
@ -230,7 +230,7 @@ func Send(msg *Message) (int, error) {
|
||||||
}
|
}
|
||||||
return num, nil
|
return num, nil
|
||||||
} else {
|
} else {
|
||||||
body := []byte("To: " + strings.Join(msg.To, ";") + "\r\n" + content)
|
body := []byte("To: " + strings.Join(msg.To, ",") + "\r\n" + content)
|
||||||
|
|
||||||
// send to multiple emails in one message
|
// send to multiple emails in one message
|
||||||
err := sendMail(setting.MailService, msg.To, body)
|
err := sendMail(setting.MailService, msg.To, body)
|
||||||
|
|
Loading…
Reference in a new issue