--- title: Destinations | 0ct description: Configure where your AI task results are delivered --- # Destinations Destinations define where task results are delivered after execution. 0ct supports email delivery for formatted reports and results. ## Overview When a task completes, 0ct can automatically deliver results to configured destinations. Currently, email delivery is fully supported, with SMS and webhook destinations on the roadmap. ## Email Delivery Email destinations deliver formatted results directly to inboxes. ### Configuring Email Delivery **Via Dashboard:** 1. Navigate to **Tasks** in the sidebar 2. Edit a task or create a new one 3. In the **Delivery** section, add email recipients 4. Configure subject line and format 5. Click **Save** ### Email Configuration Options | Option | Description | Default | | ---------- | ---------------------------------- | --------- | | Recipients | Email addresses to receive results | Required | | Subject | Email subject line | Task name | | Format | HTML or plain text | HTML | ### Example: Task with Email Delivery When creating a task via the dashboard, you can configure email delivery in the task settings. Results are sent immediately when the task completes. ## Webhook Delivery (Coming Soon) Webhook destinations will send JSON payloads to any HTTP endpoint, enabling integration with: - Slack - Discord - Zapier - Custom applications ### Planned Webhook Payload Format ``` { "event": "task.completed", "timestamp": "2026-02-03T15:30:00Z", "task": { "id": "task_abc123", "name": "Daily Report" }, "run": { "status": "completed", "output": "Today's key metrics show..." } } ``` ## SMS Delivery (Coming Soon) SMS destinations will send concise notifications via text message for time-sensitive alerts. ## Delivery Best Practices ### Email Reports - Use email for detailed, formatted content - Include clear subject lines - Add multiple recipients for team visibility ### Future: Webhooks - Perfect for system integrations - Trigger downstream automation - Connect to any HTTP endpoint ### Future: SMS - Reserve for urgent, time-sensitive alerts - Keep messages concise - Use for status updates, not full reports ## Next Steps - [Create Tasks](/guides/tasks/index.md) - Configure your AI workflows - [Connect Sources](/guides/sources/index.md) - Add data connections - [Create Skills](/guides/skills/index.md) - Build reusable instructions