Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
TypeScript
import { Crevio } from "@crevio/sdk"; const crevio = new Crevio({ apiKey: process.env["CREVIO_API_KEY"] ?? "", }); async function run() { const result = await crevio.emails.send({}); console.log(result); } run();
{ "object": "email", "recipients": 123, "subject": "<string>", "status": "queued" }
Sends an email to customers
API key in the format: Bearer {api_token}
Sender email address (uses account default if omitted)
List of recipient email addresses
Email subject line
Email body content
Filter recipients by customer type
Send to all customers
Email queued
email
Number of recipients
queued
Was this page helpful?