hey, i want to forward mails to multiple other mails using workers, but its not working, here is my setup: ```js export default { async email(message, env, ctx) { await message.forward("ticocraftmcpe@gmail.com"); await message.forward("tobiasrothmeier1807@gmail.com"); } } ```