We have our own email sending composable that you can use to send emails from your site. You can use the useEmail
composable to send emails.
import { useEmail } from "supersaas/composables";
const handleSubmit = async () => {
await useEmail("resend").send({
to: "[email protected]",
subject: "Example email",
html: "<p>Hello World</p>",
});
};