summaryrefslogtreecommitdiffstats
path: root/utils/mail.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-01-05 20:35:36 -0600
committer=Corey Hulen <corey@hulen.com>2016-01-05 20:35:36 -0600
commit01a5f67398e0fa32f739534feba75d4c3a904c3e (patch)
tree04d2ae2c00b84a0473ee98323327bf6f5ce6b05a /utils/mail.go
parent7f8cb30bd36a88307148612f4b27d6a28f954b6b (diff)
downloadchat-01a5f67398e0fa32f739534feba75d4c3a904c3e.tar.gz
chat-01a5f67398e0fa32f739534feba75d4c3a904c3e.tar.bz2
chat-01a5f67398e0fa32f739534feba75d4c3a904c3e.zip
PLT-1607 adding more debugging info for email and push notifications
Diffstat (limited to 'utils/mail.go')
-rw-r--r--utils/mail.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/mail.go b/utils/mail.go
index ece4105a6..6625060de 100644
--- a/utils/mail.go
+++ b/utils/mail.go
@@ -98,12 +98,12 @@ func SendMail(to, subject, body string) *model.AppError {
}
func SendMailUsingConfig(to, subject, body string, config *model.Config) *model.AppError {
- l4g.Debug("sending mail to " + to + " with subject of '" + subject + "'")
-
if !config.EmailSettings.SendEmailNotifications || len(config.EmailSettings.SMTPServer) == 0 {
return nil
}
+ l4g.Debug("sending mail to " + to + " with subject of '" + subject + "'")
+
fromMail := mail.Address{config.EmailSettings.FeedbackName, config.EmailSettings.FeedbackEmail}
toMail := mail.Address{"", to}