-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-can-it.json
More file actions
24 lines (24 loc) · 844 Bytes
/
example-can-it.json
File metadata and controls
24 lines (24 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"cannedResponses": [
{
"name": "Meeting Invitation Response",
"body": "Dear {{ Name }},\n\nThank you for inviting me to your meeting at {{ Meeting Time }} on {{ Meeting Date }}. Unfortunately, I will be busy working and will be unable to attend.",
"fields": [
"Name",
"Meeting Time",
"Meeting Date"
]
},
{
"name": "Project Request Response",
"body": "Dear {{ Name }},\n\nThank you for inviting me to work on {{ Project Name }} for you. I will have to decline as I have several projects of me own to attend to.",
"fields": [
"Name",
"Project Name"
],
"defaults": {
"Name": "Bob"
}
}
]
}