A Skiff Mail Quick Aliases alternative.
This is a simple email aliases service that uses Cloudflare Workers to forward emails to a single email address.
You can use [email protected] to receive emails, and all the emails will be forwarded to one email address.
As Skiff Mail said, Protect your inbox and identify. You can use this service to protect your inbox from spam and identify the source of the emails.
- all the receipts can be sent to
[email protected]
- all the newsletters can be sent to
[email protected]
- all the bookings can be sent to
[email protected]
Wrangler
installedbun
installed- Cloudflare Account
- Clone the repository:
git clone https://github.com/okisdev/email-aliases.git
- Run
bun install
to install the dependencies. - Run
wrangler login
to login to your Cloudflare account. - Fill in the domain and matcher in
config/domain.ts
, all the[email protected]
will be forwarded to the email address you set inconfig/matcher.ts
. - Run
wrangler deploy
to publish the worker to Cloudflare. - Go to your Cloudflare Workers and Pages dashboard: https://dash.cloudflare.com/account-id/workers/services/view/email-aliases/production/triggers#email, and add an new email trigger. (See https://developers.cloudflare.com/email-routing/email-workers/ to learn more about Email Workers.)
- In Edit catch-all address page, set Action to
Send to a Worker
, and set the Worker to the worker you just deployed. - Done!
Now try to send an email to [email protected]
, and you will receive the email in the email address you set in config/matcher.ts
.