Hono speaks the Web-standard Request/Response, so there’s no framework magic: read the
request’s FormData and hand it straight to mail(). Postboi extracts the special fields and renders the rest into a tidy HTML table.
Point a multipart/form-data form at /contact. Include hidden _subject and _reply_to fields, and mirror the email into _reply_to with a one-line oninput so replying reaches
the sender:
Field names use the fieldset→field syntax. The same handler
works on any Web-standard runtime (Bun, Deno, Workers, Node with an adapter). The provider
and default recipient come from postboi.config.ts — a POSTBOI_TOKEN routes to Postboi Cloud, or pick any provider.
Runnable example: examples/hono-provider-postboi.