## Import contacts and build segments safely
1. Clean the CSV before it touches Resend: drop malformed addresses, dedupe case-insensitively, and strip role addresses you never collected consent for. A dirty import seeds your bounce rate on day one.
2. Use double opt-in for any list that was not explicitly collected for email. Send the confirmation mail first and only create the contact when the link is clicked; unconfirmed addresses never enter a segment. Docs: https://resend.com/docs/knowledge-base/audience-hygiene
3. Map your own fields to contact properties at import time, for example plan tier and signup date. Properties are what segments filter on later, so decide the segmentation model before the first import, not after.
4. Import in batches and check the import status. The create-contact webhook does not fire for CSV imports, so do not rely on webhooks to confirm an import landed; poll the import status endpoint instead.
5. Build segments from properties plus engagement: active users, trial users, customers on a plan. Review each segment's member count right after creation; a count of zero usually means a property name mismatch.
6. Make imports idempotent: keep a record of imported external ids and skip rows already imported. Re-running an import must not create duplicates.
7. Before any broadcast, send a small test to the segment and confirm the right people got it. A segment built on a misspelled property silently targets nobody or everybody.