rootmail

Platform

Proof & compliance

Signed, verifiable records of what you sent — and data-retention controls.

For disputes, audits, and regulators: export a cryptographically signed record of exactly what was sent and when. Anyone can verify it without trusting you.

GET/v1/messages/:id/proof
GET/v1/exports/compliance
POST/v1/proof/verify
GET/v1/retention
PUT/v1/retention
proof.ts
const proof = await mail.messages.proof(msg.id);   // { bundle, signature }
const valid = await mail.compliance.verify(proof);  // true — tamper-evident
noteProof bundles are Ed25519-signed; any edit to the recorded events breaks the signature.