linstrom/mailer/mail.go

13 lines
156 B
Go
Raw Normal View History

2024-08-22 17:57:53 +00:00
package mailer
import (
"io/fs"
mail "github.com/xhit/go-simple-mail/v2"
)
type MailClient struct {
mailServer *mail.SMTPServer
templatesFs fs.FS
}