Emailens
Web App

Sharing Previews

Share email preview results with your team via shareable links.

Authenticated users can generate a shareable link for any preview. The link gives read-only access to the full preview results without requiring the recipient to sign in.

  1. Open a preview from the dashboard or after generating a new preview
  2. Click the Share button
  3. Copy the generated URL

The share link includes the full analysis: per-client transforms, compatibility scores, CSS warnings, dark mode variants, and screenshots.

Share links follow the same 30-day retention as the underlying preview. After 30 days, the preview and its share link are automatically deleted.

API sharing

You can also create share links programmatically:

curl -X POST https://emailens.dev/api/share \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"previewId": "prev_abc123"}'

The response includes the share URL:

{
  "shareUrl": "https://emailens.dev/share/shr_xyz789"
}

On this page