Email forwarding using workers

Hello, I would like help in using workers

As you know cloudflare doesn’t support 1 email to forward to many emails so I would like if some helps me

It forward from the following email [email protected] (all emails sent ti this address)

It forwards the message to multiple emails examples
[email protected]
[email protected]

I have tried but I couldn’t do it

Thank you in advance

Code

async email (message, env, ctx) {
const allowList = ["[email protected]", "tesr@gmail"]
message.forward allowList);
}