Send transactional, marketing emails, SMSes and push notifications effortlessly.
Reach your users
Transactional Mail
Marketing Mail
Finally an open source alternative for Resend, Mailgun, Sendgrid and postmark.
Integrate in minutes
const requestOptions = {
method: "POST",
headers: {
"Accept": "application/json",
"Content-Type": "application/json",
"Authorization": "Bearer us_1a2b3c4d5e6f7f8g"
},
body: JSON.stringify({
"to": "[email protected]",
"from": "[email protected]",
"subject": "Unsend email",
"html": "<p>Unsend is the best open source product to send emails</p>"
}),
};
fetch("http://unsend.dev/api/v1/emails", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.error(error));