1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-30 08:46:43 +02:00
notify/service/mail/mail.go
2021-01-25 05:05:28 +01:00

59 lines
1.6 KiB
Go

package mail
import (
"net/smtp"
"net/textproto"
"github.com/jordan-wright/email"
"github.com/pkg/errors"
)
// Mail struct holds necessary data to send emails.
type Mail struct {
senderAddress string
smtpHostAddr string
smtpAuth smtp.Auth
receiverAddresses []string
}
// New returns a new instance of a Mail notification service.
func New(senderAddress, smtpHostAddress string) *Mail {
return &Mail{
senderAddress: senderAddress,
smtpHostAddr: smtpHostAddress,
receiverAddresses: []string{},
}
}
// AuthenticateSMTP authenticates you to send emails via smtp.
// Example values: "", "test@gmail.com", "password123", "smtp.gmail.com"
func (m *Mail) AuthenticateSMTP(identity, userName, password, host string) {
m.smtpAuth = smtp.PlainAuth(identity, userName, password, host)
}
// AddReceivers takes email addresses and adds them to the internal address list. The Send method will send
// a given message to all those addresses.
func (m *Mail) AddReceivers(addresses ...string) {
m.receiverAddresses = append(m.receiverAddresses, addresses...)
}
// Send takes a message subject and a message body and sends them to all previously set chats. Message body supports
// html as markup language.
func (m Mail) Send(subject, message string) error {
msg := &email.Email{
To: m.receiverAddresses,
From: m.senderAddress,
Subject: subject,
// Text: []byte("Text Body is, of course, supported!"),
HTML: []byte(message),
Headers: textproto.MIMEHeader{},
}
err := msg.Send(m.smtpHostAddr, m.smtpAuth)
if err != nil {
err = errors.Wrap(err, "failed to send mail")
}
return err
}