sendMail
This module is specifically designed for Cloudflare Workers as it uses mailchannels under the hood, which is free if you deploy your app to Cloudflare Workers.
import { sendMail } from 'https://deno.land/x/cheetah/mod.ts'
await sendMail({
subject: 'Hello!',
message: 'Hello, this is just an example.',
from: {
name: 'You',
email: '[email protected]'
},
to: '[email protected]'
})