Get up and running with Unosend in under 5 minutes. This guide will walk you through creating an account, getting your API key, and sending your first email.
5 minute read - The free plan includes 5,000 emails/month - perfect for getting started!
Once your domain is verified, send your first email using the REST API. Works with any programming language!
Copy
curl -X POST https://api.unosend.co/emails \ -H "Authorization: Bearer un_your_api_key" \ -H "Content-Type: application/json" \ -d '{ "from": "hello@yourdomain.com", "to": ["recipient@example.com"], "subject": "Hello from Unosend!", "html": "<h1>Welcome!</h1><p>This is your first email sent with Unosend.</p>" }'