Email Worker does not forward mails

I have a simple email worker, which should forward a custom email adress to some destinations:

`
export default {
async email(message, env, ctx) {
await message.forward(“m[email protected]");
await message.forward("m
[email protected]”);

}
}
`

But whatever I try, I get an exception:

{
“outcome”: “exception”,
“scriptName”: “young-unit-8dad”,
“diagnosticsChannelEvents”: ,
“exceptions”: [
{
“name”: “Error”,
“message”: “destination address not verified”,
“timestamp”: 1709469841592
}
],
“logs”: ,
“eventTimestamp”: 1709469841579,
“event”: {
“rawSize”: 5664,
“rcptTo”: “info@r***e”,
“mailFrom”: “[email protected]
},
“id”: 0
}

The adresses I forward to are verified in cloudflare.

Could anybody give me a hint on what I could try to resolve this?

If you go to Email → Email Routing → Destination Addresses (Magic Link: https://dash.cloudflare.com/?to=/:account/:zone/email/routing/destination-address), they are both added and verified in there? That’s the verified they are talking about. You want to verify the addresses you are forwarding to (ex: [email protected] and [email protected] should both be added).

Yes, they are. And the funny thing is, if I use one of the addresses in the catch-all handler, it works fine.
So maybe this is a misleading error response?