Skip to main content
Go to Latest
function sendMail
Deprecated
Deprecated

moved to the core:

import { Get } from 'darkflare'

Get({
...
}, c => {
await c.mail(...)
...
})
import { sendMail } from "https://deno.land/x/darkflare@v7.2.3/x/sendMail.ts";

Parameters

options: { subject: string; message: string; from: { name: string; email: string; }; to: Contact; cc?: Contact; bcc?: Contact; reply?: boolean; dkim?: { domain?: string; privateKey?: string; selector?: string; }; wait?: boolean; }