Skip to main content

Email 2FA Verification

Email 2FA adds an extra layer of identity verification to the signing process. When enabled on a template, signers must verify their email address by entering a one-time code before they can access the signing form.

How it works

  1. A signer opens the signing link (/s/:slug).
  2. Instead of seeing the signing form immediately, they see an email verification screen.
  3. DocuTrust sends a 6-digit verification code to the signer’s email address.
  4. The signer enters the code on the verification screen.
  5. If the code is valid, the signer proceeds to the signing form.
  6. If the code is invalid or expired, the signer can request a new one.

Enabling Email 2FA

Per-template configuration

Enable email 2FA verification on a template by setting the require_email_2fa preference:
Response:

Disabling Email 2FA

Set require_email_2fa to false:

Verification flow

When a signer opens their signing URL and the template has require_email_2fa: true, they see an email verification screen instead of the signing form. The screen displays:
  • A message explaining that email verification is required.
  • The signer’s email address (partially masked for privacy, e.g., j***@example.com).
  • A button to send the verification code.

Step 2: Code delivery

DocuTrust sends an email containing:
  • A 6-digit numeric verification code.
  • The template name for context.
  • An expiration notice (codes expire after 10 minutes).
Example email:

Step 3: Code entry

The signer enters the 6-digit code on the verification screen. Validation rules:

Step 4: Signing form access

After successful verification, the signer proceeds to the normal signing form. The verification status is stored in the submitter’s session — the signer does not need to re-verify if they navigate away and return within the same browser session.

Audit trail

Email 2FA verification events are recorded in the immutable audit trail: Audit log entry example:

Combining with other verification methods

Email 2FA can be combined with other verification methods for multi-layer identity verification:
Email 2FA verification applies to all submitters on the template, regardless of role. If you want different verification requirements per role, create separate templates for each role with different preferences.
Email 2FA is especially useful for templates where the signer’s identity must be confirmed but you do not want the friction of phone-based verification. It adds a layer of assurance that the person accessing the form controls the email address on file.
Email 2FA requires that submitters have a valid email address. Submissions created with send_email: false still require email verification if the template has require_email_2fa: true.