What's the best way to send mail from a Pages instance?
What's the best way to send mail from a Pages instance?

"node_compat" within the wrangler.toml?node_compat (which is done with standard polyfills that increase the size of your Worker) is slowly being fazed out in favor of nodejs_compat (which is built into the runtime)KnexonError() handler.If you're running your application on Cloudflare Workers, set a binding value named SENTRY_DSN, which will be used as the DSN.
wrangler.toml file?wrangler.toml file or .dev.vars filec.get('sentry') -- that returns emptyheaders.set('Accept', 'application/json'); ,it will throw errorsimport { Hono } from 'hono'
import { sentry } from '@hono/sentry'
const app = new Hono<{ Bindings: Bindings }>({ strict: false })
app.use('*', sentry({ debug: true }))app.get('/call-sentry', async(c) => {
c.get('sentry').captureException('Something happened, tell Sentry!')
}) "stack": " at run7 (functionsWorker-0.9172056921113851.js:425:19)
at async onRequest8 (functionsWorker-0.9172056921113851.js:374:12)
at async next (functionsWorker-0.9172056921113851.js:915:26)
at async Object.fetch (functionsWorker-0.9172056921113851.js:929:14)","node_compat"Knex