Versions in this module Expand all Collapse all v0 v0.1.1 Apr 12, 2024 v0.1.0 Apr 12, 2024 Changes in this version + type EmailSender struct + Password string + SmtpHost string + func NewEmailSender(smtpHost string, password string) *EmailSender + func (es EmailSender) Send(subject string, content string, from string, to string) error + func (es EmailSender) SendBulk(subject string, content string, from string, to []string) error + type IEmailSender interface + Send func(subject string, content string, from string, to string) error + SendBulk func(subject string, content string, from string, to []string) error