Official MailKite components for Pipedream — the inbound-email wedge that Pipedream's built-in triggers leave open.
- 📥 New Inbound Email (Instant) — trigger a workflow when an email arrives at your own
verified domain (not a Pipedream-generated address). Signed
email.receivedwebhook with parsedfrom/to/subject/text/html/threadId/auth/attachments. - 📤 Send Email — send from a verified domain via one API call (templates, cc/bcc, reply-to).
Why this matters: Pipedream's built-in New Email trigger only gives you a Pipedream-generated address. Receiving on your own domain otherwise means gluing AWS SES catch-all or Postmark webhooks. These components close that gap.
components/mailkite/
├── mailkite.app.mjs # auth + shared HTTP methods
├── package.json # component manifest (@pipedream/platform)
├── README.md # marketplace-rendered docs
├── sources/new-inbound-email/
│ ├── new-inbound-email.mjs # the (Instant) webhook trigger
│ └── test-event.mjs # sample email.received payload
└── actions/send-email/
└── send-email.mjs # Send Email action
This repo is the canonical home for MailKite's Pipedream components. They are contributed to
the public PipedreamHQ/pipedream registry, which is
what lists them at pipedream.com/apps/mailkite.
⏳ Awaiting Pipedream app creation. A registry PR can only attach to an app that exists in
Pipedream's system. We've requested the mailkite app (API-key auth) via Pipedream's
new-app process — see PLAN.md. All component code here is complete and lints clean
in the meantime.
- Wait for Pipedream to create the
mailkiteapp with anapi_keyauth field. pd login(Pipedream CLI).- Fork
PipedreamHQ/pipedream; copy this repo'scomponents/mailkite/into the fork'scomponents/mailkite/. - Iterate locally:
pd publish components/mailkite/sources/new-inbound-email/new-inbound-email.mjs --dev pd dev components/mailkite/sources/new-inbound-email/new-inbound-email.mjs pd events <source-name> # watch events as real mail arrives pd publish components/mailkite/actions/send-email/send-email.mjs --dev
- Open a PR against
PipedreamHQ/pipedream. On merge it lists automatically — no fee, no security-review cycle.
npm install
npm run lintMIT — see LICENSE.