Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
Thanks, BossThis is very insightful and very timely as well
Good to know that this was helpful 😊
this is helpful. please can you assist to include the json code in parse json for the attachments in the comment section.
Hi,Below is the parse JSON code.{ "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "message": { "type": "string" }, "attachments": { "type": "array", "items": { "type": "object", "properties": { "filename": { "type": "string" }, "content": { "type": "string" } }, "required": [ "filename", "content" ] } } }}Note: this might vary based on the names of the fields coming from your form
Thanks, Boss
This is very insightful and very timely as well
Good to know that this was helpful 😊
this is helpful. please can you assist to include the json code in parse json for the attachments in the comment section.
Hi,
Below is the parse JSON code.
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"message": {
"type": "string"
},
"attachments": {
"type": "array",
"items": {
"type": "object",
"properties": {
"filename": {
"type": "string"
},
"content": {
"type": "string"
}
},
"required": [
"filename",
"content"
]
}
}
}
}
Note: this might vary based on the names of the fields coming from your form