Hacker News new | ask | show | jobs
Show HN: Webhook API – inbound email –> webhook (echovalue.dev)
3 points by emiliano 60 days ago
Hi HN,

I often run into systems that can send email but cannot call a webhook directly

I built a tool that creates an opaque email address <mailboxId>@hook.echovalue.dev and forwards inbound messages as structured JSON to a configured endpoint. It can also call a webhook from a cron schedule, so small scheduled jobs do not need their own worker

There are built-in formats for Slack, Discord, Teams, Telegram and custom JSON templates.

Pricing is pay-as-you-go and intentionally low. It is mostly there as an abuse limit rather than a subscription model

Docs: https://docs.echovalue.dev/webhook/

any feedback?

1 comments

Out of curiosity — what's the inbound email pipeline behind this? AWS SES + Lambda or something custom? Asking because I've been weighing the same options for a side project and the trade-offs aren't obvious.
I’m using Cloudflare Email Routing with a catch-all address that triggers a Worker. The Worker parses the email and stores the attachments in R2.

Pretty simple setup, but it works well for this use case