You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-fly/tools/smtp.go

23 lines
519 B

package tools
import (
"github.com/emersion/go-sasl"
"github.com/emersion/go-smtp"
"strings"
)
4 years ago
func Send(server string, from string, password string, to []string, subject string, body string) error {
auth := sasl.NewPlainClient("", from, password)
msg := strings.NewReader(
4 years ago
"From: " + from + "\r\n" +
"To: " + strings.Join(to, ",") + "\r\n" +
"Subject: " + subject + "\r\n" +
"\r\n" +
body + "\r\n")
err := smtp.SendMail(server, auth, from, to, msg)
if err != nil {
return err
}
return nil
4 years ago
}