-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
39 lines (37 loc) · 1.04 KB
/
appsettings.json
File metadata and controls
39 lines (37 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"ContactFormSettings": {
"Id": "default",
"NotificationEmailCsv": "",
"NotificationSubject": "Contact Form Submission",
"CopySubmitterEmailOnSubmission": "true"
},
"SmtpOptions": {
"Server": "www.test.com",
"Port": "25",
"User": "test",
"Password": "test",
"UseSsl": "false",
"RequiresAuthentication": "false",
"DefaultEmailFromAddress": "test@test.com",
"DefaultEmailFromAlias": "test"
},
"RecaptchaKeys": {
"PublicKey": "",
"PrivateKey": "",
"Invisible": true
},
"ContactFormMessageOptions": {
"NotificationTextViewName": "EmailTemplates/ContactFormTextEmail",
"NotificationHtmlViewName": "EmailTemplates/ContactFormHtmlEmail",
"SubmitterNotificationTextViewName": "EmailTemplates/ContactFormSubmitterTextEmail",
"SubmitterNotificationHtmlViewName": "EmailTemplates/ContactFormSubmitterHtmlEmail"
},
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
}
}