Email Routing to multiple Destination addresses

Suggestion:
Allow a single email address to forward to multiple Destination addresses.

I am using an existing email forwarding service with my DNS host and I have set up my child’s email address to forward to myself and my partner.

Obviously to avoid abuse, I would suggest only forwarding to a limited amount of Destinations addresses.

FYI, it appears that you can do this using Email Workers.
https://developers.cloudflare.com/email-routing/email-workers/enable-email-workers/

This is an example of the code you can use. You must have the forwarding addresses already authorized destination addresses.

export default {
  async email(message, env, ctx) {
    await message.forward("[email protected]");
    await message.forward("[email protected]");
  },
};
1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.