원클릭으로
brevo
Send emails, SMS, or manage contacts via Brevo (formerly Sendinblue)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Send emails, SMS, or manage contacts via Brevo (formerly Sendinblue)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Read or update contacts, opportunities, notes, and conversations in GoHighLevel
Save or retrieve records from Airtable bases
Manage bookings, availability, and event types in Cal.com
Check availability, create scheduling links, or list upcoming events in Calendly
Create or update tasks and lists in ClickUp
Call any custom HTTPS endpoint
| name | brevo |
| display_name | Brevo |
| description | Send emails, SMS, or manage contacts via Brevo (formerly Sendinblue) |
| auth_type | api_key |
| category | marketing |
When the user wants their voice agent to send emails or SMS via Brevo after a call. Common triggers:
Check connection via check_connection("brevo").
If not connected: Use secret("brevo") in tool scripts. The system
will automatically emit the correct action card based on the platform
configuration. Do NOT emit action cards manually.
{
"name": "brevo.send_email",
"description": "Send a transactional email via Brevo",
"params": [
{"name": "to_email", "description": "Recipient email address", "type": "string", "required": true},
{"name": "subject", "description": "Email subject", "type": "string", "required": true},
{"name": "text", "description": "Plain text email body", "type": "string", "required": true},
{"name": "from_email", "description": "Sender email address (must be verified in Brevo)", "type": "string", "required": true},
{"name": "from_name", "description": "Sender display name", "type": "string", "required": false}
],
"script": "let key = secret('brevo');\nlet body = {sender: {email: from_email, name: from_name || ''}, to: [{email: to_email}], subject: subject, textContent: text};\nlet resp = http_post_h('https://api.brevo.com/v3/smtp/email', body, {'api-key': key, 'Content-Type': 'application/json'});\nif (resp.status >= 200 && resp.status < 300) { return 'Email sent.'; }\nthrow new Error(`Brevo ${resp.status}: ${resp.body}`);",
"side_effect": true
}
secret("brevo") for credentialsapi-key as the header name (not Authorization)throw using resp.status/resp.body