Skip to content

Instantly share code, notes, and snippets.

@parasquid
Created March 18, 2025 07:17
Show Gist options
  • Save parasquid/2fbb0755451c5215a98001f4c73d8f8d to your computer and use it in GitHub Desktop.
Save parasquid/2fbb0755451c5215a98001f4c73d8f8d to your computer and use it in GitHub Desktop.
CloudFlare worker to forward email to multiple recipients
export default {
async email(message, env, ctx) {
const forwardList = [
"[email protected]",
"[email protected]",
"[email protected]",
];
for(const email of forwardList){
await message.forward(email);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment