Email package for the BIL monorepo. Provides email sending capabilities using Resend and React Email templates.
import { sendEmail } from "@mayson/email";// Send a price alert emailawait sendEmail({ type: "price-alert", to: "[email protected]", data: { symbol: "BTC", currentPrice: 50000, targetPrice: 49000, direction: "below", percentChange: -2.5 }}); Copy
import { sendEmail } from "@mayson/email";// Send a price alert emailawait sendEmail({ type: "price-alert", to: "[email protected]", data: { symbol: "BTC", currentPrice: 50000, targetPrice: 49000, direction: "below", percentChange: -2.5 }});
Email package for the BIL monorepo. Provides email sending capabilities using Resend and React Email templates.
Example