원클릭으로
Send emails, SMS, or manage contacts via Brevo (formerly Sendinblue)
npx skills add https://github.com/ferosai/feros --skill brevo이 명령을 Claude Code에 복사하여 붙여넣어 스킬을 설치하세요
Send emails, SMS, or manage contacts via Brevo (formerly Sendinblue)
npx skills add https://github.com/ferosai/feros --skill brevo이 명령을 Claude Code에 복사하여 붙여넣어 스킬을 설치하세요
| 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.bodyRead 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