Cyber Pigeon Documentation
Everything you need to integrate email delivery into your application
Welcome to Cyber Pigeon
Cyber Pigeon is a powerful email delivery service that helps developers send transactional and marketing emails with ease. Our robust API and SMTP relay ensure your emails reach their destination with industry-leading deliverability rates.
Fast Integration
Get started in minutes with our simple REST API and comprehensive SDKs
Real-time Analytics
Track delivery, opens, clicks, and bounces with detailed reporting
Secure & Reliable
Enterprise-grade security with 99.9% uptime SLA
Template Engine
Create beautiful emails with our drag-and-drop editor
Quick Start
Ready to send your first email? Follow these simple steps:
Sign Up
Create your free Cyber Pigeon account and get your API key
Install SDK
Install our SDK for your preferred programming language
Send Email
Use our simple API to send your first email in just a few lines of code
Code Example
Here's how easy it is to send an email with Cyber Pigeon:
curl -X POST https://api.cyberpigeon.email/v1/send \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"to": "user@example.com",
"from": "noreply@yourapp.com",
"subject": "Welcome to our service!",
"html": "<h1>Hello World!</h1><p>Welcome to Cyber Pigeon!</p>"
}'
import cyberpigeon
# Initialize client
client = cyberpigeon.Client('YOUR_API_KEY')
# Send email
message = client.send_email(
to='user@example.com',
from_email='noreply@yourapp.com',
subject='Welcome to our service!',
html='<h1>Hello World!</h1><p>Welcome to Cyber Pigeon!</p>'
)
print(f"Message sent: {message.id}")
const CyberPigeon = require('cyberpigeon');
// Initialize client
const client = new CyberPigeon('YOUR_API_KEY');
// Send email
const message = await client.sendEmail({
to: 'user@example.com',
from: 'noreply@yourapp.com',
subject: 'Welcome to our service!',
html: '<h1>Hello World!</h1><p>Welcome to Cyber Pigeon!</p>'
});
console.log(`Message sent: ${message.id}`);
<?php
require_once 'vendor/autoload.php';
use CyberPigeon\Client;
// Initialize client
$client = new Client('YOUR_API_KEY');
// Send email
$message = $client->sendEmail([
'to' => 'user@example.com',
'from' => 'noreply@yourapp.com',
'subject' => 'Welcome to our service!',
'html' => '<h1>Hello World!</h1><p>Welcome to Cyber Pigeon!</p>'
]);
echo "Message sent: " . $message->id;
?>
Popular Resources
Need Help?
📚 Browse Documentation
Explore our comprehensive guides and API reference
💬 Community Forum
Connect with other developers and get help from the community