Bug fix: not send e-mail to cc address

This commit is contained in:
knqyf263
2017-02-16 22:25:04 +09:00
parent a6f0c559f8
commit 98151f7d0e
2 changed files with 6 additions and 3 deletions

View File

@@ -122,7 +122,7 @@ func (e *emailSender) Send(subject, body string) (err error) {
emailConf.SMTPAddr,
),
emailConf.From,
emailConf.To,
mailAddresses,
[]byte(message),
)
if err != nil {