summaryrefslogtreecommitdiff
path: root/email-template.rkt
diff options
context:
space:
mode:
authorBenji Dial <benji@benjidial.net>2024-02-07 19:20:56 -0500
committerBenji Dial <benji@benjidial.net>2024-02-07 19:20:56 -0500
commit026d52a710e4c15e555e88c71d027a300d868a26 (patch)
tree90bbde8c484a84e3fddd2ae0592f000301b1d521 /email-template.rkt
parent7b89b4cd703ee1123f01e3ddba0ae24911baf410 (diff)
downloadvoting-site-026d52a710e4c15e555e88c71d027a300d868a26.tar.gz
put email config in separate file so it can be .gitignored
Diffstat (limited to 'email-template.rkt')
-rw-r--r--email-template.rkt14
1 files changed, 14 insertions, 0 deletions
diff --git a/email-template.rkt b/email-template.rkt
new file mode 100644
index 0000000..58461b7
--- /dev/null
+++ b/email-template.rkt
@@ -0,0 +1,14 @@
+#lang racket
+
+(provide
+ email-server
+ email-port
+ email-user
+ email-password
+ email-from)
+
+(define email-server "smtp.example.org")
+(define email-port 587)
+(define email-user "noreply@example.org")
+(define email-password "my super secret password")
+(define email-from "noreply@example.org")