97b3a1d7ea
Common is no more a thing Use of TorrentParam instead of SearchParam now Common structs for search are exported in utils/search/structs Util has been renamed utils
62 lignes
1,7 Kio
Go
62 lignes
1,7 Kio
Go
package email
|
|
|
|
import (
|
|
"path/filepath"
|
|
|
|
"github.com/NyaaPantsu/nyaa/config"
|
|
"github.com/NyaaPantsu/nyaa/utils/log"
|
|
gomail "gopkg.in/gomail.v2"
|
|
)
|
|
|
|
// Error type
|
|
type Error error
|
|
|
|
var (
|
|
mailer = InitGomail()
|
|
)
|
|
|
|
// InitGomail : init the gomail dialer
|
|
func InitGomail() *gomail.Dialer {
|
|
newMailer := gomail.NewDialer(config.Conf.Email.Host, config.Conf.Email.Port, config.Conf.Email.Username, config.Conf.Email.Password)
|
|
return newMailer
|
|
}
|
|
|
|
// SendEmailFromAdmin : send an email from system with email address in config/email.go
|
|
func SendEmailFromAdmin(to string, subject string, body string, bodyHTML string) error {
|
|
msg := gomail.NewMessage()
|
|
msg.SetHeader("From", config.Conf.Email.From)
|
|
msg.SetHeader("To", to, config.Conf.Email.TestTo)
|
|
msg.SetHeader("Subject", subject)
|
|
msg.SetBody("text/plain", body)
|
|
msg.AddAlternative("text/html", bodyHTML)
|
|
log.Debugf("to : %s", to)
|
|
log.Debugf("subject : %s", subject)
|
|
log.Debugf("body : %s", body)
|
|
log.Debugf("bodyHTML : %s", bodyHTML)
|
|
if config.Conf.Email.SendEmail {
|
|
log.Debug("SendEmail performed.")
|
|
|
|
err := mailer.DialAndSend(msg)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SendTestEmail : function to send a test email to email address in config/email.go
|
|
func SendTestEmail() error {
|
|
msg := gomail.NewMessage()
|
|
msg.SetHeader("From", config.Conf.Email.From)
|
|
msg.SetHeader("To", config.Conf.Email.TestTo)
|
|
msg.SetAddressHeader("Cc", config.Conf.Email.TestTo, "NyaaPantsu")
|
|
msg.SetHeader("Subject", "Hi(안녕하세요)?!")
|
|
msg.SetBody("text/plain", "Hi(안녕하세요)?!")
|
|
msg.AddAlternative("text/html", "<p><b>Nowplay(나우플레이)</b> means <i>Let's play</i>!!?</p>")
|
|
path, err := filepath.Abs("img/megumin.png")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
msg.Attach(path)
|
|
|
|
err = mailer.DialAndSend(msg)
|
|
return err
|
|
}
|