Is it possible to get Email URL and send to Webhook?

I saw it on zapier and tested it.
When receives an email an url is extracted and a webhook request is sent which verifies the email from which the email is received.
Is it possible in n8n.io

Process

  1. Receive Email
  2. Extract Particular URL (eg. from domain sendgrid)
  3. Webhook POST sent to URL

Yes, that should be no problem.

There is the “EmailReadImap Node” which can listen for new emails and trigger the workflow whenever one gets received.

It will then give access to the sender-address and the content. That can then be used for whatever. Like sending it with an HTTP-Request Node somewhere to verify and then depending on that call another URL, send an email, Slack message, …

1 Like