timur_332
11/02/2025, 9:45 PMChiranjeet Mishra
11/02/2025, 9:46 PMtimur_332
11/02/2025, 9:46 PMVercel
11/03/2025, 10:28 PMChiranjeet Mishra
11/05/2025, 6:16 AMjson
{
"name": "sendEmailViaMake",
"type": "make",
"triggerHook": "https://hook.us1.make.com/your-webhook-id",
"steps": [
{
"type": "function",
"function": {
"name": "extractContactInfo",
"parameters": {
"type": "object",
"properties": {
"fullMessage": {
"type": "string",
"description": "The complete message to parse"
}
}
}
}
}
]
}
Both options will let you combine multiple text parsers into one structured send-and-email process.
If you share how your webhook and parsers are currently structured, I can show you the exact linking steps next.
Best,
KyleChiranjeet Mishra
11/05/2025, 6:17 AM{
"model": {
"provider": "openai",
"model": "gpt-4",
"functions": [
{
"name": "sendEmail",
"description": "Sends an email with the collected contact information",
"parameters": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The person's name extracted from the message"
},
"phoneNumber": {
"type": "string",
"description": "The phone number extracted from the message"
},
"email": {
"type": "string",
"description": "The email address extracted from the message"
},
"message": {
"type": "string",
"description": "Additional message content"
}
},
"required": [
"name",
"email"
]
},
"url": "https://your-server.com/send-parsed-email",
"method": "POST"
}
]
}
}