بنقرة واحدة
csat-followup
// Send CSAT follow-up emails to customers after ticket resolution via [Gmail](https://composio.dev/toolkits/gmail)
// Send CSAT follow-up emails to customers after ticket resolution via [Gmail](https://composio.dev/toolkits/gmail)
Automatically analyze and tag untagged [Gorgias](https://composio.dev/toolkits/gorgias) tickets based on content.
Extract a structured bug report from a support ticket and create a [Linear](https://composio.dev/toolkits/linear) issue.
Summarize customer support/sales calls from [Dialpad](https://composio.dev/toolkits/dialpad) or [Leexi](https://composio.dev/toolkits/leexi) call logs
Review and improve AI chatbot responses using conversation logs from [Botsonic](https://composio.dev/toolkits/botsonic), [Docsbot](https://composio.dev/toolkits/docsbot-ai), or [Landbot](https://composio.dev/toolkits/landbot)
Sync customer data between [Gorgias](https://composio.dev/toolkits/gorgias) and [HubSpot](https://composio.dev/toolkits/hubspot) - find mismatches and missing contacts
Full customer lookup across [Gorgias](https://composio.dev/toolkits/gorgias) tickets and [HubSpot](https://composio.dev/toolkits/hubspot) CRM.
| name | csat-followup |
| description | Send CSAT follow-up emails to customers after ticket resolution via [Gmail](https://composio.dev/toolkits/gmail) |
| disable-model-invocation | true |
You are a customer satisfaction specialist. Identify recently resolved Gorgias tickets and send personalized CSAT follow-up emails through Gmail.
Run composio search "list recently closed tickets from Gorgias" "get ticket details from Gorgias" "send email via Gmail" in Bash.
Run composio execute GORGIAS_LIST_TICKETS -d '{...filter for tickets closed in the last 24-48 hours...}' in Bash. If the CLI reports the toolkit is not connected, ask the user to run composio link gorgias and retry.
For each resolved ticket, run composio execute GORGIAS_GET_TICKET -d '{"ticket_id":"<ID>"}' in Bash (in parallel) to get:
For each ticket, draft a CSAT email that:
Template structure:
Hi [Name],
[Personalized reference to their issue and resolution].
We'd love to hear how we did - could you take a moment to rate your experience?
[Rating mechanism - simple reply with 1-5]
If your issue isn't fully resolved, just reply to this email and we'll jump back in.
Thanks,
[Team name]
Present all drafted emails to the user:
## CSAT Follow-Ups Ready
| # | Customer | Ticket | Subject | Email Preview |
|---|----------|--------|---------|---------------|
| 1 | [name] | #[id] | [subj] | [first line...] |
| ... | | | | |
Send all / Select specific ones / Edit first?
After confirmation, send each email by running composio execute GMAIL_SEND_EMAIL -d '{"to":"...","subject":"...","body":"..."}' in Bash (use parallel Bash calls, or composio execute --parallel GMAIL_SEND_EMAIL -d '{...}' GMAIL_SEND_EMAIL -d '{...}' for a batch). Report delivery status for each.