- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
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
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
Комментарии отсутствуют
Информация о видео
7 декабря 2025 г. 14:42:20
00:03:45
Другие видео канала





















