Email & Messaging

Send transactional emails, SMS, and manage your messaging campaigns through the Brevo API.

Send E-mail Transakcyjny

const email = {
to: [{ email: "[email protected]", name: "John Doe" }],
sender: { email: "[email protected]", name: "Your App" },
subject: "Welcome to our service!",
htmlContent: "<h1>Welcome!</h1><p>Thank you for signing up.</p>"
};
brevo.transactionalEmails.sendTransacEmail(email);

SMS Messaging

const sms = {
sender: "YourApp",
recipient: "+1234567890",
content: "Your verification code is: 123456"
};
brevo.transactionalSMS.sendTransacSms(sms);

Features

  • Transactional emails
  • SMS messaging
  • Email templates
  • Delivery tracking
  • Bounce handling