Cloudflare 이메일

EmDash CMS email-provider plugin that delivers via the native Cloudflare Email Sending Workers binding.

플러그인

Cloudflare 이메일

EmDash CMS email-provider plugin that delivers via the native Cloudflare Email Sending Workers binding.

  • 카테고리: Mail
  • 상태: 사용 가능
  • 버전: 0.1.0
  • 가격: Free

Delivers transactional email through the native Cloudflare Email Sending Workers binding. No API token required — auth happens via the binding.

Installation

npm install emdash-plugin-cloudflare-email
import cloudflareEmail from "emdash-plugin-cloudflare-email";

export default defineConfig({
  integrations: [
    emdash({
      plugins: [cloudflareEmail()],
    }),
  ],
});

Requirements

  • EmDash >= 0.5.0
  • Cloudflare Workers deployment (trusted-mode only)
  • A domain onboarded for Cloudflare Email Sending
  • Astro 6 + @astrojs/cloudflare v13+

Caveats

  • Trusted-mode only — the plugin uses the Workers send_email binding which requires host Worker access.
  • The binding name must be EMAIL in this release.