一键导入
blink-notifications
Send emails (HTML/text, attachments, cc/bcc), SMS messages, and manage phone numbers for AI calling. Platform-provided — no API keys needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Send emails (HTML/text, attachments, cc/bcc), SMS messages, and manage phone numbers for AI calling. Platform-provided — no API keys needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | blink-notifications |
| description | Send emails (HTML/text, attachments, cc/bcc), SMS messages, and manage phone numbers for AI calling. Platform-provided — no API keys needed. |
# Send email
blink notify email user@example.com --subject "Welcome!" --html "<h1>Hello</h1>"
# Send SMS
blink sms send +15551234567 "Your code is 123456"
# List phone numbers
blink phone list
# Buy a phone number
blink phone buy --area-code 415
| Tool | Description |
|---|---|
blink_notify_email | Send email with HTML/text, attachments, cc/bcc |
blink_sms_send | Send SMS message |
blink_phone_list | List owned phone numbers |
blink_phone_buy | Purchase a phone number |
blink_phone_release | Release a phone number permanently (stops billing) |
No setup required — built into Blink. From address auto-generated as noreply@{projectId}.blink-email.com.
const { success, messageId } = await blink.notifications.email({
to: 'customer@example.com',
subject: 'Order shipped!',
html: '<h1>Your order is on the way</h1>',
text: 'Your order is on the way',
})
await blink.notifications.email({
to: ['team@example.com', 'manager@example.com'],
replyTo: 'support@mycompany.com',
cc: 'accounting@mycompany.com',
bcc: 'archive@mycompany.com',
subject: 'Invoice #12345',
html: '<h2>Invoice Ready</h2><p>See attached.</p>',
text: 'Invoice Ready. See attached.',
attachments: [{
url: 'https://storage.example.com/invoices/12345.pdf',
filename: 'Invoice-12345.pdf',
type: 'application/pdf'
}]
})
| Option | Type | Required | Description |
|---|---|---|---|
to | string | string[] | Yes | Recipient(s) |
subject | string | Yes | Subject line |
html | string | Yes* | HTML content |
text | string | Yes* | Plain text fallback |
replyTo | string | No | Reply-to address |
cc | string | string[] | No | CC recipients |
bcc | string | string[] | No | BCC recipients |
attachments | array | No | File attachments (url + filename) |
*Either html or text required (both recommended for deliverability)
blink sms send +15551234567 "Your verification code is 847291"
await blink.notifications.sms({
to: '+15551234567',
body: 'Your verification code is 847291'
})
Phone numbers are required for AI calling (see blink-ai skill) and SMS.
# List available numbers
blink phone list
# Buy a number in a specific area code
blink phone buy --area-code 415
# Buy any available number
blink phone buy
replyTo instead of custom from address+1 prefix for US numbersOAuth connector system for 38+ third-party services. Execute API calls to Google, Notion, Slack, Discord, GitHub, Stripe, Jira, HubSpot, Salesforce, LinkedIn, and more.
End-to-end guide for building and shipping a Blink app. Project setup, SDK init, auth, database, backend, deploy, and custom domains. Index to all other skills.
Authentication with managed and headless modes. Social providers, email/password, magic links, RBAC.
Build and deploy Blink apps to production. Preview vs production deploys, deploy pipeline, static site hosting.
Blink Claw agent management — managed AI agent hosting on Fly.io. List agents, check status, manage secrets. For autonomous agents, Telegram/Discord bots, and scheduled workflows.
AI Gateway for text generation, image generation/editing, video generation, text-to-speech, audio transcription, and AI phone calls. Unified access to 50+ models.