summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-16 12:36:35 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-16 12:36:35 -0700
commitac38aadc12b9665b612196d4293495d79e3f9d19 (patch)
tree268fb595ce70e5586cf16e8145339aca8f3469b0 /utils
parent4e11fa23d750afbefad099638530b754776a3357 (diff)
downloadchat-ac38aadc12b9665b612196d4293495d79e3f9d19.tar.gz
chat-ac38aadc12b9665b612196d4293495d79e3f9d19.tar.bz2
chat-ac38aadc12b9665b612196d4293495d79e3f9d19.zip
Fixing broken email templates
Diffstat (limited to 'utils')
-rw-r--r--utils/config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/config.go b/utils/config.go
index 9f66e9f37..722964934 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -277,11 +277,13 @@ func getClientProperties(c *Config) map[string]string {
props["Version"] = c.ServiceSettings.Version
props["SiteName"] = c.ServiceSettings.SiteName
props["ByPassEmail"] = strconv.FormatBool(c.EmailSettings.ByPassEmail)
+ props["FeedbackEmail"] = c.EmailSettings.FeedbackEmail
props["ShowEmailAddress"] = strconv.FormatBool(c.PrivacySettings.ShowEmailAddress)
props["AllowPublicLink"] = strconv.FormatBool(c.TeamSettings.AllowPublicLink)
props["SegmentDeveloperKey"] = c.ClientSettings.SegmentDeveloperKey
props["GoogleDeveloperKey"] = c.ClientSettings.GoogleDeveloperKey
props["AnalyticsUrl"] = c.ServiceSettings.AnalyticsUrl
+
props["ByPassEmail"] = strconv.FormatBool(c.EmailSettings.ByPassEmail)
props["ProfileHeight"] = fmt.Sprintf("%v", c.ImageSettings.ProfileHeight)
props["ProfileWidth"] = fmt.Sprintf("%v", c.ImageSettings.ProfileWidth)