summaryrefslogtreecommitdiff
path: root/src/email.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/email.clj')
-rwxr-xr-xsrc/email.clj6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/email.clj b/src/email.clj
index 8a29418..4afd94c 100755
--- a/src/email.clj
+++ b/src/email.clj
@@ -38,7 +38,7 @@
(.setContent msg (:text mail) (:mime mail))
(javax.mail.Transport/send msg))))
-(def mail-templates (StringTemplateGroup. "dumpfm-mail" "template/mail" ))
+(def mail-templates (StringTemplateGroup. "humpfm-mail" "template/mail" ))
(.setRefreshInterval mail-templates 3)
(defn parse-mail-template [temp props]
@@ -56,7 +56,7 @@
"text/plain"))
(defn dump-mail [to subject text]
- (base-mail :user "info@dump.fm"
+ (base-mail :user "info@hump.fm"
:password "UHR4Moghu5a2"
:host "smtpout.secureserver.net"
:port 465
@@ -66,7 +66,7 @@
:text text
:mime (classify-mimetype text)))
-(def *admin-lists* {"dumpfmprod" ["info@dump.fm"]
+(def *admin-lists* {"dumpfmprod" ["info@hump.fm"]
"sostler" ["sbostler@gmail.com"]
"jules" ["julescarbon@gmail.com"]})