Загрузка...

How to Forward Emails + Trigger Webhooks with Cloudflare (Complete Setup Tutorial)

Automate your entire inbox in minutes!
In this video, I’ll show you exactly how to set up Cloudflare Email Routing so you can:

⚡ Forward any email from your domain straight to Gmail
⚡ Trigger a Make.com webhook instantly
⚡ Capture leads faster
⚡ Build powerful automations — with ZERO backend code

This tutorial walks through every step from creating the Email Worker, pasting the code, deploying it, and connecting your custom address to Cloudflare routing rules.
Perfect for small businesses, freelancers, agencies, and anyone who wants speed-to-lead automation.

🔧 Code From the Video
export default {
async email(message, env, ctx) {
// MUST forward first
await message.forward("YOUR_GMAIL_ADDRESS");

// THEN alert Make
await fetch("YOUR_MAKE_WEBHOOK_URL", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
from: message.from,
to: message.to,
subject: message.subject
})
});

return new Response("OK");
}
};

💬 QUESTION OF THE VIDEO

What automation are you planning to build with this setup?
Drop your answer in the comments

Видео How to Forward Emails + Trigger Webhooks with Cloudflare (Complete Setup Tutorial) канала Mohamad Azian
Яндекс.Метрика
Все заметки Новая заметка Страницу в заметки
Страницу в закладки Мои закладки
На информационно-развлекательном портале SALDA.WS применяются cookie-файлы. Нажимая кнопку Принять, вы подтверждаете свое согласие на их использование.
О CookiesНапомнить позжеПринять