AI TEMPLATE DESIGNERBuild a launch email for our new collectionGenerating layout…
SMARTER CREATION
Future-ready emails at your fingertips.
Turn a simple idea into a polished email that speaks your brand’s language. Start with AI, customize every block and send through the same delivery platform.
✦Campaign-ready layouts✓Responsive by default↗Connected to delivery analytics
Use SMTP for immediate compatibility or the API for complete control. Delivery, bounce, complaint and unsubscribe events flow back through signed webhooks.
POST /v1/email
import { VuelaMail } from'@vuelamail/sdk';
const mail = new VuelaMail(process.env.VUELA_API_KEY);
await mail.send({
from: 'hello@yourdomain.com',
to: 'customer@example.com',
subject: 'Your order is on its way',
html: '<h1>Good news.</h1>'
});
from vuelamail import VuelaMail
mail = VuelaMail(api_key=os.environ["VUELA_API_KEY"])
mail.send(
sender="hello@yourdomain.com",
recipient="customer@example.com",
subject="Your order is on its way"
)