EmailAPI
Send emails from your code
Integrate email notifications into your application. Great for alerts, reports, and automated communications.
What you can build
Contact form notifications
Get notified when someone fills out your contact form.
import { yeetpost } from "yeetpost";
await yeetpost({
connection: "email",
text: `New contact from ${form.name}:\n\n${form.message}\n\nReply to: ${form.email}`,
});Weekly reports
Automate your reporting workflow.
import { yeetpost } from "yeetpost";
await yeetpost({
connection: "email",
text: `Weekly Report\n\nUsers: ${stats.users}\nRevenue: $${stats.revenue}\nChurn: ${stats.churn}%`,
});Ready to get started?
Start posting to Email in minutes.