-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CC my personal email on Contact Form submissions
This will allow me to much more promptly respond, since I rarely check the official mailbox (real email gets lost in the deluge of spam).
- Loading branch information
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,11 @@ | |
'[email protected]', | ||
]; | ||
|
||
// E-mail addresses to CC on contact form submissions | ||
+const CONTACT_FORM_CC_ADDRESSES = [ | ||
'[email protected]', | ||
]; | ||
|
||
const SMTP_HOSTNAME = 'smtp'; | ||
|
||
const HISTORY_DATABASES = []; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,11 @@ | |
'[email protected]', | ||
]; | ||
|
||
// E-mail addresses to CC on contact form submissions | ||
+const CONTACT_FORM_CC_ADDRESSES = [ | ||
'[email protected]', | ||
]; | ||
|
||
# Refer to the smtp container name in the dockerize (live) repo. This name is | ||
# unique, unlike the service name ("smtp"), which is the same in both beta and | ||
# live. This ensures we only ever connect to the live smtp service. | ||
|