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?