Who this is for: anyone with an HTML contact form on their site who wants every submission to land in a Slack channel immediately, instead of an inbox nobody checks.
n8n exposes a webhook URL. Point your HTML form's action (or a small fetch call) at it; each submission is reformatted and posted to a Slack incoming webhook, then the visitor gets a short confirmation response.
nome/name, email, messaggio/message (or adjust the Code inside the node to match your field names).The Webhook node accepts any POST body and makes it available as $json.body; the following HTTP Request node builds the Slack message text from those fields and posts it as JSON to Slack's incoming webhook URL, which needs no Slack app or bot token — just the webhook URL itself.
nome/name, email, messaggio/message) are guesses matching common form conventions — check your own form's field names and adjust the node if they differ.