Room · LR-004Mission · Operator DocumentationHelp center
All docs

Email

Email and consent

Transactional vs marketing email, consent, suppression, and preferences.

Transactional emails

Account verification, password reset, security alerts, and unsubscribe confirmations are transactional. They are sent regardless of marketing preferences.

Optional marketing emails

Marketing emails are off by default. Users opt in explicitly during signup or from /app/settings → Notifications.

Newsletter consent

The marketing site newsletter form writes a row to consent_records with the consent type, source, and a hashed IP. Consent is auditable.

Email preferences

Stored in email_preferences per user. Granular toggles for marketing, product updates, educational, and launch resources. An unsubscribed_all flag overrides the rest.

Unsubscribe

Every marketing email includes an unsubscribe link with a hashed token from unsubscribe_tokens. /unsubscribe and /email-preferences work without sign-in via the token.

Suppression

email_suppressions is the do-not-send list. Email send code checks it before any marketing send. The table has no client RLS access — only server functions read/write it.

Related docs