Skip to content

EmailRule

Source: src/Cloudflare/Email/EmailRule.ts

A Cloudflare Email Routing rule.

Rules forward inbound mail matching matchers to the listed actions (forward to a verified destination, drop, or hand off to a Worker).

const rule = yield* Cloudflare.EmailRule("InfoForward", {
zone: "example.com",
matchers: [{ type: "literal", field: "to", value: "info@example.com" }],
actions: [{ type: "forward", value: ["ops@example.com"] }],
});