Loading...
Loading...
Try our API endpoints directly in your browser. No setup required.
Sign up for free to get your API key and start sending messages across all channels.
Get Started/api/v1/emailsSend a single email to a recipient
fetch('https://notifyn.net/api/v1/emails', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"to": "user@example.com",
"subject": "Hello from Notify'n!",
"text": "This is a test email sent from the API playground.",
"fromName": "Your Company"
})
})
.then(res => res.json())
.then(data => console.log(data));Check out our documentation for detailed guides and examples.