mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	#1649 Using commas to delineate emails
This commit is contained in:
		| @@ -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) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user