Hey there, question regarding email workers: Is it possible to use plus addressing with it?
Hey there, question regarding email workers: Is it possible to use plus addressing with it?
can I also use assignedWorkerEmail+abcdef@sub.cloudflare.comno
Signs such “+” and “.” are treated as normal characters for custom addresses
Email Routing does not have advanced routing options. Characters such as + or ., which perform special actions in email providers like Gmail and Outlook, are currently treated as normal characters on custom addresses. More flexible routing options are in our roadmap.


curl against a url and then did ctrl+c to cancel it before it finished, or loaded a webpage and then closed the tab or pressed the X to stop loading before it finished

wrangler tail command or on the Cloudflare dashboard.return fetch(request) should do that, yeah if (newurl.pathname === "/supersecretfetchmetotriggercron" && request.headers.has("APIKEY") && request.headers.get("APIKEY") === env.CRONAPIKEY) {
// if you're using any properties of the event like cron/etc you can recreate it instead of passing null
await this.scheduled(null, env, ctx);
return new Response("ok - triggered");
}