Is it not possible to do the send_email binding in a normal worker? I'm feeling like I'm banging my
Is it not possible to do the send_email binding in a normal worker? I'm feeling like I'm banging my head here on a wall.

example@mydomain.com and example+foo@mydomain.com to send email to that worker?export default {
async fetch(request) {
const url = new URL(request.url);
url.hostname = 'my-custom-pages-site.pages.dev';
return fetch(url.toString(), request);
}
};not_found_handling so it only routes to my worker if the path matches /api? i've implemented 404 handling from the worker code but it would be expensive if every non-page matched the function"/api/*"?
op run -- wrangler dev and it will pickup the local secrets from environment variables that have 1Password Refs in them (op://Private/Vault/GitHub/token)wrangler dev --remote .. the binding is a SecretsStoreSecret and it gets the value from the real secret store. I'm confused how this works. Should this work? Doesn't this basically give everyone on the team access to the secrets? Just console.log() them in your local env?
example@mydomain.comexample+foo@mydomain.comexport default {
async fetch(request) {
const url = new URL(request.url);
url.hostname = 'my-custom-pages-site.pages.dev';
return fetch(url.toString(), request);
}
};not_found_handling"/api/*"op run -- wrangler devop://Private/Vault/GitHub/tokenwrangler dev --remoteSecretsStoreSecretconsole.log()