E-Mail Routing to multiple addresses

Hey!
I wanted to ask how I can send the emails from one adress to multiple addresses as destination?

Currently, this is only possible using Email Workers. You can create a simple email worker, and forward it to multiple destinations, something like:

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

Then just set up a route to forward mail to that worker.

1 Like

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