3.0.0 • Published 2 months ago

mailchannels v3.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

mailchannels(.js)

!NOTE
This SDK is meant for Cloudflare Workers' integration of mailchannels, which doesn't require authentication.

Setup

npm i mailchannels
import { sendMail } from 'mailchannels'

Usage

Add the below TXT records for SPF and Domain Lock to work correctly. Replace WORKER_ID with either

  • your unique subdomain for workers, e.g. username.workers.dev
  • or the (sub)domain you're using for the worker, e.g. example.com.
NameContent
@v=spf1 a mx include:relay.mailchannels.net ~all
_mailchannelsv=mc1 cfid=WORKER_ID
const { success } = await sendMail({
  subject: 'An example',
  message: 'This is an example email sent from Cloudflare Workers.',
  from: {
    name: 'You',
    email: 'you@your.domain'
  },
  to: 'somebody@some.domain'
})
3.0.0

2 months ago

2.0.0

2 months ago

1.0.1

3 months ago

1.0.0

3 months ago