Kroxt BaaS supports email dispatch through Gmail/SMTP or the Resend API. You can define templated emails using standard Handlebars variables (`{{name}}`) in the dashboard and trigger verification OTP flows automatically.
const result = await baas.communication.sendEmail({
to: "user@example.com",
subject: "Verification Complete",
html: "<h3>Your account setup is fully configured!</h3>",
});