Create beautiful, responsive and professional‑looking transactional emails with our drag‑and‑drop email.
Pick from our growing library of responsive email templates and shape your design in our email editor.
Personalized transactional emails yield better results.
With Mailzeet, you don't just send emails, you send successful messages that resonate.
Transactional email isn't just developers, it's a team effort.
Mailzeet is a dedicated transactional email service designed to streamline and secure your business's email communications. By providing a platform specifically for transactional emails, Mailzeet ensures that important messages such as receipts, account updates, and real‑time notifications are delivered reliably and efficiently to your customers' inboxes.
// Add this to your .env file:
MAILZEET_API_KEY=re_123456789
// Send the email
Mailzeet::emails()->send([
'from' => '[email protected]',
'to' => '[email protected]',
'subject' => 'Hello World',
'html' => '<strong>it works!</strong>',
]);
import { Mailzeet } from 'mailzeet';
const mailzeet = new Mailzeet('re_123456789');
(async function() {
try {
const data = await mailzeet.emails.send({
from: '[email protected]',
to: '[email protected]',
subject: 'Hello World',
html: '<strong>it works!</strong>'
});
console.log(data);
} catch (error) {
console.error(error);
}
})();