- adds `twenty-slack` to internal application ci - unify config with twenty-last-contact app - add base oxlint config to show error twenty-shared is used in internal app <!-- This is an auto-generated description by cubic. --> <a href="https://cubic.dev/pr/twentyhq/twenty/pull/21849?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. -->
This is a Twenty application bootstrapped with create-twenty-app.
Overview
Twenty for Twenty is the official internal Twenty app. It is organized into modules, each integrating a third-party service with Twenty.
Resend module (src/modules/resend/)
Two-way sync between Twenty and the Resend email platform. The module syncs contacts, segments, templates, broadcasts, and emails.
Inbound (Resend -> Twenty):
- A cron job runs every 5 minutes to pull all entities from the Resend API
- A webhook endpoint receives real-time events for contacts and emails
Outbound (Twenty -> Resend):
- Database event triggers push contact and segment changes back to Resend when records are created, updated, or deleted in Twenty
Getting Started
1. Install and run the app
yarn twenty dev
This registers the app with your local Twenty instance at http://localhost:3000/settings/applications.
2. Configure app variables
In Twenty, go to Settings > Applications > Twenty for Twenty and set:
- RESEND_API_KEY -- Your Resend API key. Create one at https://resend.com/api-keys (full access recommended).
- RESEND_WEBHOOK_SECRET -- The signing secret for verifying inbound webhooks (see "Webhook setup" below).
3. Webhook setup
The app exposes an HTTP endpoint at /s/webhook/resend that receives Resend webhook events. To connect it:
- Go to https://resend.com/webhooks
- Click Add webhook
- Set the Endpoint URL to your Twenty server's public URL +
/s/webhook/resend(e.g.https://your-domain.com/s/webhook/resend) - Set Events types to All Events
- Click Add
- Copy the signing secret Resend displays and paste it into the
RESEND_WEBHOOK_SECRETapp variable in Twenty
The webhook handles:
- Contact events (
contact.created,contact.updated,contact.deleted) -- upserts/deletes Resend contact records in Twenty - Email events (
email.sent,email.delivered,email.bounced,email.opened,email.clicked, etc.) -- updates delivery status on Resend email records in real-time - Domain events -- logged and skipped (no domain object in the app yet)
4. Testing webhooks locally
Install the Resend CLI:
brew install resend/cli/resend
Or via npm if Homebrew has issues:
npm install -g resend-cli
Authenticate:
resend login
Start the webhook listener with forwarding to your local Twenty server:
resend webhooks listen --forward-to http://localhost:3000/s/webhook/resend
The CLI will:
- Create a public tunnel automatically
- Register a temporary webhook in Resend pointing to that tunnel
- Forward incoming events (with Svix signature headers) to your local Twenty server
- Display events in the terminal as they arrive
- Clean up the temporary webhook when you press Ctrl+C
To trigger test events, create or update a contact in the Resend dashboard, or send a test email.
Sync behavior
Inbound sync
| Source | Mechanism | Entities |
|---|---|---|
| Cron (every 5 min) | Polls Resend API, upserts into Twenty | Contacts, segments, templates, broadcasts, emails |
| Webhook (real-time) | Receives Resend events via HTTP | Contacts, emails |
Outbound sync
| Twenty action | Resend API call |
|---|---|
| Create contact | contacts.create() -- writes resendId back to Twenty |
| Update contact (name, email, unsubscribed) | contacts.update() |
| Delete contact | contacts.remove() |
| Create segment | segments.create() -- writes resendId back to Twenty |
| Delete segment | segments.remove() |
Loop prevention
A lastSyncedFromResend field on contact, segment, and email records tracks when data came from Resend. Outbound triggers skip processing when this field is part of the update, preventing infinite echo loops between inbound and outbound sync.
Commands
Run yarn twenty help to list all available commands.