-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsettings-options.json
114 lines (114 loc) · 2.99 KB
/
settings-options.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"fields": {
"Notifications": {
"type": "accordion",
"titleField": "EmailSubject",
"items": {
"fields": {
"From": {
"title": "From",
"type": "select",
"optionLabels": [ "Host", "Site Admin", "Form Field", "Custom", "Current Dnn user" ],
"removeDefaultNone": true
},
"FromName": {
"dependencies": {
"From": "custom"
},
"helper": "Name part of the email address"
},
"FromEmail": {
"type": "email",
"dependencies": {
"From": "custom"
}
},
"FromNameField": {
"dependencies": {
"From": "form"
},
"helper": "Form field where the name is extracted"
},
"FromEmailField": {
"dependencies": {
"From": "form"
},
"helper": "Form field where the email is extracted"
},
"To": {
"type": "select",
"optionLabels": [ "Host", "Site Admin", "Form Field", "Custom", "Current Dnn user" ],
"removeDefaultNone": true
},
"ToName": {
"dependencies": {
"To": "custom"
},
"helper": "Name part of the email address"
},
"ToEmail": {
"type": "email",
"dependencies": {
"To": "custom"
}
},
"ToNameField": {
"dependencies": {
"To": "form"
},
"helper": "Form field where the name is extracted"
},
"ToEmailField": {
"dependencies": {
"To": "form"
},
"helper": "Form field where the email is extracted"
},
"ReplyTo": {
"type": "select",
"optionLabels": [ "Host", "Site Admin", "Form Field", "Custom", "Current Dnn user" ]
},
"ReplyToName": {
"dependencies": {
"ReplyTo": "custom"
},
"helper": "Name part of the email address"
},
"ReplyToEmail": {
"type": "email",
"dependencies": {
"ReplyTo": "custom"
}
},
"ReplyToNameField": {
"dependencies": {
"ReplyTo": "form"
},
"helper": "Form field where the name is extracted"
},
"ReplyToEmailField": {
"dependencies": {
"ReplyTo": "form"
},
"helper": "Form field where the email is extracted"
},
"EmailSubject": {
},
"EmailBody": {
"type": "summernote"
}
}
}
},
"Settings": {
"fields": {
"Message": {
"type": "summernote"
},
"Tracking": {
"type": "textarea"
}
}
}
}
}