aboutsummaryrefslogtreecommitdiffstats
path: root/tools/config-sample.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/config-sample.js')
-rw-r--r--tools/config-sample.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/config-sample.js b/tools/config-sample.js
new file mode 100644
index 0000000..9f0941d
--- /dev/null
+++ b/tools/config-sample.js
@@ -0,0 +1,16 @@
+exports.config = {
+ email: {
+ transport: {
+ type: 'SMTP',
+ options: {
+ host: "my-server.com",
+ auth: {
+ user: 'smtp-user',
+ pass: 'password'
+ }
+ }
+ },
+ from: 'user@gmail.com'
+ }
+}
+