Email encryption is the use of cryptography to protect email data from unauthorized access. In everyday email delivery, it usually means Transport Layer Security (TLS), which encrypts the connection between mail servers while a message is in transit; stronger end-to-end encryption encrypts the message content itself so only intended recipients can read it.

What email encryption means in email sending

Email was designed decades before privacy, authentication, and large-scale phishing defenses became central concerns. Traditional SMTP can transfer commands, message headers, and message content as readable text. Without encryption, a party able to observe a network connection between two mail servers could potentially inspect the email moving across it.

Today, the phrase email encryption is used for several related but distinct protections. Treating them as interchangeable causes security gaps and operational confusion. A company may truthfully say it uses encrypted email while only encrypting server-to-server connections, not encrypting message content from mailbox provider to mailbox provider.

The major categories are:

  • Encryption in transit: TLS encrypts a connection while a message travels between an email app and a sending server, or between two mail servers.
  • Encryption at rest: A provider encrypts stored mailbox data, backups, queues, or logs on its infrastructure.
  • End-to-end encryption (E2EE): The message body and attachments are encrypted for the recipient, generally using the recipient's public key or an organization-controlled encryption system.
  • Application-layer encryption: A sender encrypts selected content before putting it into an email or sends a secure link to content stored elsewhere.

For transactional email, newsletters, password resets, receipts, and product notifications, the operationally important form is usually SMTP transport encryption. A sending platform establishes a secure TLS connection to a receiving mail server when that server supports and negotiates TLS. That protects the message on that individual network hop.

It does not automatically mean the message is unreadable to the sending provider, the recipient provider, mail administrators, security scanners, or a compromised mailbox. It also does not guarantee every hop of a message's route is encrypted. Those distinctions matter when you choose a delivery architecture, write privacy documentation, or send regulated information.

How SMTP email encryption works

SMTP transport encryption is commonly negotiated with the STARTTLS SMTP extension. The sending mail transfer agent (MTA) opens an SMTP connection and identifies itself with EHLO. If the recipient server advertises STARTTLS, the sender can request that the connection be upgraded to TLS before it sends the message envelope and content.

A simplified server-to-server exchange looks like this:

S: 220 mx.recipient.example ESMTP
C: EHLO outbound.sender.example
S: 250-mx.recipient.example
S: 250-STARTTLS
S: 250 SIZE 52428800
C: STARTTLS
S: 220 Ready to start TLS
[the TLS handshake occurs]
C: EHLO outbound.sender.example
S: 250-mx.recipient.example

After the TLS handshake, the sender repeats EHLO because the encrypted connection is a new SMTP state. The sending server then continues with commands such as MAIL FROM, RCPT TO, and DATA over the protected connection.

Opportunistic TLS versus required TLS

Most inter-server SMTP encryption is historically opportunistic TLS. That means the sender uses TLS when the receiving server advertises support, but may fall back to cleartext SMTP or an unverified TLS connection if TLS cannot be negotiated. This raised the baseline for privacy across the email ecosystem, but it is not a complete defense against active attacks.

An attacker with the ability to alter a connection could attempt a downgrade attack, such as removing the recipient server's STARTTLS advertisement. If the sender's policy permits plaintext fallback, the sender may deliver without encryption rather than recognize the manipulation.

Required TLS changes the decision. A sender configured to require a valid TLS connection will defer or fail delivery when it cannot establish one. The right choice depends on the message type, recipient requirements, and business risk. A password-reset message delayed by a recipient TLS outage may create a poor customer experience; a message containing highly sensitive data may be inappropriate to deliver over an unencrypted route.

Encryption is hop-by-hop, not automatically end-to-end

SMTP TLS normally protects one connection at a time:

  1. Your application submits mail to your email provider over TLS.
  2. The provider's outbound MTA delivers to the recipient domain's MTA over TLS.
  3. The recipient's mail system may transfer the message internally over another protected connection.
  4. The recipient reads the message through a web session or an email client connection, which should also use TLS.

Each connection can be encrypted, yet the message may exist in decrypted form on participating servers. This is why transport encryption is excellent for preventing network interception but is not a substitute for end-to-end encryption when the confidentiality requirement extends to email providers and intermediaries.

Transport encryption, encryption at rest, and end-to-end encryption

A useful way to evaluate email encryption is to ask: what data is encrypted, where is it encrypted, and who can decrypt it?

Transport encryption with TLS

TLS protects data moving between systems. It helps prevent passive observers on a network from reading message contents or SMTP credentials, and it provides certificate-based mechanisms to authenticate the server on the other end of the connection.

TLS is the default practical control for programmatic email. It is broadly interoperable, usually transparent to recipients, and does not change the familiar email experience. A user can receive an order confirmation, login alert, or campaign email in their regular inbox without managing encryption keys.

Its central limitation is that the servers participating in delivery can access the message. TLS protects the road between mail systems, not necessarily the message inside those systems.

Encryption at rest

Encryption at rest protects stored data, such as mailbox files, queued messages, backups, databases, and object storage. It reduces the impact of certain storage exposure scenarios, but it is not visible to another mail server and does not secure transmission over the public internet.

For email senders, this matters when evaluating a provider's security architecture and when deciding how long to retain message bodies, recipient addresses, event logs, and attachments. A secure approach pairs encryption at rest with strict access controls, key-management practices, short retention where appropriate, and careful log redaction.

End-to-end encryption

End-to-end encryption encrypts message content so that only the intended recipient, or an authorized recipient environment, can decrypt it. Common standards and approaches include S/MIME and OpenPGP, along with managed enterprise encryption systems.

E2EE offers stronger content confidentiality than transport TLS, but it introduces real delivery and product challenges:

  • Senders need a dependable way to obtain, validate, and manage recipient public keys or certificates.
  • Recipients need compatible software or a secure portal workflow.
  • Automated security scanning, archiving, discovery, and support processes may need special handling.
  • Marketing messages are generally a poor fit because consumer recipients do not normally publish usable encryption keys.
  • Tracking pixels, link rewriting, and other campaign instrumentation can conflict with the privacy model or recipient expectations.

For most bulk and transactional programs, avoid putting secrets, full payment data, government identifiers, account recovery codes with long lifetimes, or sensitive medical details in the email body. Instead, send a minimal notification and direct the user to an authenticated area of your product. That reduces exposure even when transport encryption is working as intended.

Why email encryption matters for deliverability and campaigns

Email encryption is primarily a security property, not a reputation metric. A strong TLS configuration does not make irrelevant or unwanted mail welcome, and it will not repair weak consent, poor engagement, spam complaints, malformed headers, or an unauthenticated sending domain.

Still, encryption affects deliverability in important operational ways.

It can determine whether a message is deliverable at all

Some recipient systems require TLS for particular routes, organizations, or message classes. If your sending infrastructure cannot negotiate an acceptable TLS version, cipher suite, or certificate validation outcome, the recipient may defer or reject the message.

The same is true when a receiving domain publishes an enforceable transport-security policy. A sender that respects that policy must not silently fall back to plaintext when validation fails. From a sender's perspective, this can appear as a delivery failure; from the recipient's perspective, it is the expected result of protecting message confidentiality.

It reduces operational risk around credentials and content

Your application usually submits email through SMTP credentials or an API token. Submission connections should be encrypted so credentials are not exposed in transit. A leaked SMTP credential can be used to send abusive traffic, damage domain reputation, consume sending capacity, or expose recipient data.

TLS also protects the contents of transactional emails as they travel between your application and sending provider. Password reset links, magic links, invoice notices, shipping addresses, one-time codes, and account alerts frequently contain data attackers would value. Encryption does not eliminate every risk around those emails, but it is a foundational safeguard.

It supports enterprise procurement and recipient expectations

Security-conscious customers and enterprise IT teams increasingly evaluate transport encryption, MTA-STS, TLS reporting, data retention, and incident response. A documented and monitored encryption posture can reduce friction during vendor reviews.

For a campaign sender, the second-order benefit is reliability. A monitored TLS configuration helps reveal broken MX records, expired certificates, incompatible endpoints, and unexpected routing changes before they become widespread delivery failures. Encryption telemetry is therefore both a security signal and an email operations signal.

It is distinct from sender authentication

TLS, SPF, DKIM, and DMARC solve different problems:

ControlPrimary purposeDoes it encrypt content?
TLS / STARTTLSProtects SMTP connections in transitYes, for that connection
MTA-STSTells senders to require authenticated TLS for a recipient domainNo; it enforces transport behavior
DANE for SMTPUses DNSSEC-backed TLSA records to authenticate SMTP TLSNo; it strengthens transport authentication
SPFAuthorizes servers to use an envelope sender domainNo
DKIMSigns selected message headers and body contentNo
DMARCApplies alignment and policy around SPF and DKIMNo

A well-run email program needs both message authentication and transport security. Authentication helps receiving systems decide whether a message is legitimately associated with your domain. Encryption helps protect the connection that carries it.

Is email encryption a metric?

Email encryption is not one universal rate like bounce rate or open rate. However, teams often measure it through transport-security coverage and failure metrics.

The most useful internal metric is an encrypted delivery rate, which estimates the share of attempted or accepted deliveries that used TLS.

Encrypted delivery rate = TLS-protected deliveries / total deliveries × 100

The definition must be documented before you use it. For example, do “deliveries” mean attempts, SMTP acceptances, recipient messages, or unique recipients? For operational reporting, SMTP acceptances are often more meaningful than raw attempts because retries can otherwise distort the result.

Worked numeric example

Assume a sender's platform records the following outcomes over a day:

  • 1,000,000 recipient deliveries were accepted by receiving servers.
  • 992,800 acceptances occurred after a successful TLS handshake.
  • 5,700 acceptances were delivered on a route without TLS.
  • 1,500 attempts failed because an enforced TLS policy or certificate check could not be satisfied.

The encrypted delivery rate based on accepted deliveries is:

992,800 / 1,000,000 × 100 = 99.28%

The unencrypted accepted-delivery rate is:

5,700 / 1,000,000 × 100 = 0.57%

The TLS-policy failure rate based on all delivery outcomes is:

1,500 / (1,000,000 + 1,500) × 100 = 0.15%

These numbers tell different stories. A 99.28% encrypted delivery rate may be appropriate for a broad consumer audience with many independently operated recipient domains. But 5,700 unencrypted deliveries may be unacceptable for a narrowly defined healthcare, legal, financial, or government workflow. In that case, the right improvement may be to require TLS, redesign the message content, or use a recipient portal—not merely to pursue a higher percentage.

Other useful encryption measurements

Track more than one number, because an aggregate rate can hide significant problems:

  • TLS handshake success rate: successful TLS handshakes divided by TLS handshake attempts.
  • Certificate-validation failure count: failed validation events grouped by recipient domain and error type.
  • MTA-STS policy failure count: deliveries blocked or deferred because the recipient's MTA-STS policy could not be met.
  • TLS version distribution: the percentage of successful connections using each permitted TLS version.
  • Cipher-suite distribution: useful for identifying legacy or weak configurations, where your infrastructure exposes this data.
  • Unencrypted delivery destinations: domains or routes where fallback delivery occurred.
  • Queue age for TLS-related deferrals: how long messages remain queued before a valid route becomes available.

Do not treat “TLS used” as proof that a connection was authenticated to the level your policy requires. Opportunistic TLS can encrypt a connection without the same assurances provided by strict certificate validation, MTA-STS, or DANE.

MTA-STS: making SMTP TLS harder to downgrade

MTA-STS, short for SMTP MTA Strict Transport Security, lets a receiving domain publish a policy stating that mail for the domain should be delivered only to specified MX hosts over TLS with valid certificates. It addresses a major limitation of opportunistic STARTTLS: a sender should not simply fall back to plaintext if an attacker or a broken route removes TLS availability.

MTA-STS has two publishing components:

  1. A DNS TXT record at _mta-sts.example.com that identifies the policy version.
  2. A policy file served over HTTPS from https://mta-sts.example.com/.well-known/mta-sts.txt.

An illustrative DNS TXT record is:

_mta-sts.example.com. IN TXT "v=STSv1; id=2026091101"

The id changes when you change the policy. Sending systems can use it to recognize that they should retrieve an updated policy.

A minimal policy file might look like this:

version: STSv1
mode: testing
mx: mx1.example.com
mx: mx2.example.com
max_age: 86400

The defined modes are none, testing, and enforce.

  • none indicates that the domain is not requesting enforcement.
  • testing asks compatible senders to test the policy and report failures without requiring nondelivery.
  • enforce directs compatible senders to deliver only when they can establish a valid TLS connection to an MX host permitted by the policy.

Deploy MTA-STS carefully

Move to enforce only after confirming that every MX hostname in use is represented correctly, every endpoint presents a valid certificate, and every legitimate inbound route behaves as expected. Include planned failover MX hosts as well as the primary servers. A failover design that works for ordinary SMTP but lacks a valid certificate or policy match can become a message-delivery outage under enforcement.

The policy must be available over HTTPS on the exact mta-sts hostname, with a valid publicly trusted certificate. The MX patterns in the policy must match the actual recipient MX hosts. A wildcard pattern such as *.example.com can match subdomains but does not match the bare example.com hostname, so write host patterns deliberately.

MTA-STS protects mail received by your domain. It is a receiving-domain policy that compliant external senders consult. It does not force every email you send to other domains to use TLS; outbound enforcement is a separate capability of your sending infrastructure and provider configuration.

TLS-RPT: monitoring email encryption failures

TLS Reporting, commonly called TLS-RPT, gives a receiving domain a way to request aggregate reports from compatible external senders about TLS connection failures and transport-policy failures. It is the visibility companion to MTA-STS and DANE; it does not encrypt messages or enforce delivery by itself.

A basic TLS-RPT DNS record looks like this:

_smtp._tls.example.com. IN TXT "v=TLSRPTv1; rua=mailto:tlsrpt@example.com"

The rua tag provides one or more reporting destinations. Reports are intended for automated processing, not casual manual review. They can identify failures such as expired certificates, hostname mismatches, unavailable policy files, unsupported TLS capabilities, or MTA-STS policy violations.

What to do with reports

Treat TLS-RPT data as an operational alert stream. Group failures by recipient policy domain, sending organization, MX host, failure type, and date. Then compare the timing with DNS changes, certificate renewals, mail-server deployments, firewall updates, and provider-routing changes.

A practical response workflow is:

  1. Validate the scope. Determine whether failures come from one external sender or many independent senders.
  2. Check DNS. Confirm MX records, _mta-sts TXT records, and _smtp._tls TXT records resolve as intended.
  3. Check the policy endpoint. Retrieve the MTA-STS file over HTTPS and verify exact syntax, mode, MX entries, and max_age.
  4. Check every inbound endpoint. Confirm the configured MX hosts present valid certificates whose names match the hostnames used for SMTP.
  5. Inspect certificate lifecycle events. Look for expiration, missing intermediates, accidental replacement, or incorrect SAN coverage.
  6. Change safely. Update the MTA-STS identifier after a policy change and retain telemetry long enough to confirm recovery.

A single report can reflect a sender-specific incompatibility, but a sudden increase across multiple reporters is a strong sign of a receiver-side configuration problem. Do not ignore reports merely because normal inbound mail volume appears healthy; some senders may queue messages for hours or days rather than immediately generate a visible bounce.

DANE for SMTP and DNSSEC

DANE, or DNS-Based Authentication of Named Entities, is another mechanism for strengthening SMTP transport security. SMTP DANE uses DNSSEC-protected TLSA records to publish information about the TLS certificate or public key that should be used for an MX host.

The key distinction is that DANE depends on DNSSEC validation. Without a secure chain of DNSSEC trust, a TLSA record cannot provide the intended authentication guarantee.

A TLSA record is associated with the SMTP service and port. The owner name follows this pattern:

_25._tcp.mx1.example.com.

The record then contains four components:

usage selector matching-type certificate-association-data

For example, a real record needs an exact certificate or public-key association value derived from the deployed certificate. Do not copy a placeholder hash into production. Generate and publish the value using a process that matches your chosen DANE usage, selector, matching type, certificate deployment, and DNSSEC design.

DANE can provide downgrade-resistant authenticated TLS for SMTP when deployed correctly. It can be operationally demanding because it combines certificate management, DNS publishing, DNSSEC signing, and mail-server configuration. MTA-STS is commonly more approachable for organizations that already manage public HTTPS and DNS, while DANE can be compelling where DNSSEC expertise and operational support are present.

These mechanisms are not a license to publish conflicting or unmaintained policies. Choose an approach your organization can monitor, test, renew, and support during incidents. A less ambitious policy that is consistently correct is safer than an advanced configuration that silently breaks failover delivery.

Common email encryption problems and their causes

Encryption-related delivery problems tend to fall into a handful of repeatable categories. Understanding the failure mode prevents teams from misdiagnosing a TLS issue as a reputation issue or a campaign-content issue.

Expired, invalid, or incomplete certificates

A receiving mail server may present an expired certificate, a certificate issued for the wrong hostname, a self-signed certificate where public trust is required, or a certificate chain missing required intermediates. Opportunistic senders may still deliver in some scenarios, but senders enforcing validation, MTA-STS, or DANE can defer delivery.

Fix this with automated renewal, staging checks, certificate-expiry alerts, and tests against every primary and backup MX endpoint. Include disaster-recovery hosts in the renewal inventory.

MX and MTA-STS policy mismatch

A domain may add a new MX host but forget to add it to its MTA-STS policy. Or it may remove a host from DNS while the policy still references it. A wildcard may be assumed to match the root hostname when it does not.

Fix this by managing MX records and MTA-STS policy as one deployment unit. Review the live MX answer, live policy file, and certificate names together before changing enforcement mode or routing traffic.

Incorrect policy hosting

An MTA-STS policy file must be served from the expected HTTPS location. DNS aliases, redirects, TLS certificate problems on the policy host, incorrect content type assumptions, unavailable web hosting, or an invalid policy syntax can all stop compatible senders from retrieving or applying the policy.

Fix this with automated external checks. Test from outside your network, not only from an internal environment that may have different DNS or firewall behavior.

Legacy TLS support or cipher incompatibility

An older server may not support a TLS version or cipher suite accepted by a modern sender, or a sender may have an overly restrictive client policy that fails against legitimate receiver infrastructure. The resulting symptom is often a handshake failure, connection reset, or a delayed message in the outbound queue.

Fix this by maintaining supported TLS implementations, applying security updates, and reviewing mail-server TLS configuration against your provider and recipient requirements. Do not solve compatibility by enabling obsolete protocols indiscriminately; evaluate the security and interoperability trade-off deliberately.

Port and submission configuration errors

Application-to-provider email submission differs from server-to-server SMTP delivery. A client might be configured for implicit TLS where the server expects STARTTLS, or it might attempt plaintext authentication before negotiating TLS. A firewall may also block the configured submission port.

Use the provider's documented SMTP host, port, authentication method, and TLS mode. If you are integrating via an API rather than SMTP, protect API credentials and use HTTPS. For implementation details, consult the email API reference and setup guides rather than assuming SMTP settings are interchangeable across providers.

Confusing encryption with authentication

Teams sometimes see a valid TLS connection and assume the email is authenticated, or they see DKIM pass and assume the transport was encrypted. Neither conclusion follows.

Fix this by monitoring the controls independently: SMTP TLS outcomes for transport security; SPF, DKIM, and DMARC outcomes for sender authentication; complaints, bounces, inbox placement, and engagement for deliverability health.

How senders improve email encryption

A good email encryption program is not one DNS record or a checkbox. It is a repeatable operating practice across application submission, outbound delivery, inbound receiving, DNS, certificate management, logging, and incident response.

Start with the message design

The safest sensitive data is data you never put in an email. Before focusing on encryption technology, classify the information in each message type.

For example:

  • A shipping update can usually include a first name, carrier, and tracking link.
  • A password reset should use a short-lived, single-use link rather than reveal sensitive account details.
  • A billing alert can state that action is needed and link to an authenticated billing portal.
  • A medical, legal, or financial document may need a secure portal or a recipient-specific E2EE workflow instead of ordinary email attachment delivery.

This approach reduces the consequences of mailbox compromise, forwarding, screenshots, exposed devices, and recipient misaddressing—risks TLS cannot solve.

Secure application submission

Use TLS for SMTP submission, validate your provider's server certificate when your environment supports it, and keep SMTP credentials outside source code. Use scoped API keys or credentials, rotate them, and revoke them immediately when an employee, integration, or system is retired.

Ensure your application does not log full message bodies, authorization headers, SMTP passwords, or reset URLs by default. A secure transmission path is undermined if plaintext secrets are copied into application logs, analytics tools, support tickets, or error-tracking services.

Enforce sensible outbound transport rules

For sensitive recipients or regulated workflows, decide in advance what should happen if TLS is unavailable: defer, fail, send a reduced-content notification, or route to a secure portal. Make this a documented product decision rather than an accidental consequence of default SMTP fallback behavior.

For general marketing and routine transactional mail, use TLS whenever available and measure non-TLS routes. If a domain consistently accepts only unencrypted SMTP, consider whether its recipients should receive content that contains personal or sensitive information.

Publish and monitor recipient-domain protections

If your organization receives mail, deploy MTA-STS in testing mode, set up TLS-RPT, verify certificates across all MX hosts, and study the results before moving to enforcement. Maintain an owner for the policy, a renewal calendar, monitoring alerts, and a rollback procedure.

The same DNS discipline used for SPF, DKIM, and DMARC helps here: use source-controlled records where possible, document the purpose of each record, and avoid unreviewed manual changes. Changes to mail routing and certificate infrastructure deserve change-management rigor because an error can affect every external sender at once.

Test realistic failure scenarios

A dependable encryption posture is tested during normal operations, not improvised after a certificate expires. Include these checks in routine reviews:

  • Can the application submit a test message with TLS enabled?
  • Does the receiving MTA advertise and successfully negotiate TLS?
  • Does each MX hostname match a valid, current certificate?
  • Does the MTA-STS policy list all current and failover MX routes?
  • Can external systems fetch the policy endpoint over HTTPS?
  • Are TLS-RPT reports arriving and being parsed?
  • Does an on-call owner receive an alert before certificate expiration?
  • What does the product do if secure delivery cannot be established?

This is also where a transactional email provider can reduce operational work: its infrastructure should make outbound TLS behavior observable while your team focuses on correct application integration, content minimization, and recipient-domain configuration.

Email encryption and deliverability: practical priorities

For most development teams, the priority order is straightforward.

First, authenticate sending domains with SPF, DKIM, and DMARC. Second, use a reputable email infrastructure provider or correctly maintained SMTP stack that supports modern TLS. Third, keep recipient data clean, secure credentials, and send only expected mail. Fourth, add MTA-STS and TLS-RPT to protect and monitor your own receiving domain.

Encryption belongs in a larger deliverability program, alongside permission, content quality, unsubscribe handling, complaint monitoring, IP and domain reputation, bounce processing, and authentication alignment. It is foundational but not magical.

If a campaign is landing in spam, investigate consent, engagement, authentication, list quality, content, and reputation before assuming encryption is the cause. If a message is deferred or rejected with TLS-, certificate-, or policy-related SMTP diagnostics, then investigate transport security immediately. The error category determines the right fix.

Conclusion

Email encryption protects email, but the protection depends on the layer. TLS encrypts the connection between mail systems and is the baseline for modern SMTP operations. MTA-STS and DANE strengthen transport security against downgrade and authentication failures. TLS-RPT adds visibility. Encryption at rest protects stored provider data, while end-to-end encryption protects message content more deeply but requires a different recipient experience and key-management model.

For senders, the practical goal is to use TLS for submission and delivery, minimize sensitive content in messages, keep certificates and DNS policies correct, monitor failures, and choose secure delivery behavior intentionally. That combination improves the confidentiality and operational resilience of your email program without confusing a transport-security control for a complete privacy or deliverability solution.

FAQ

Is email encryption the same as TLS?

Not exactly. TLS is the most common form of email encryption because it protects connections while email is in transit. “Email encryption” can also refer to encryption at rest or end-to-end encryption, which protect different parts of the email lifecycle.

Does TLS make email end-to-end encrypted?

No. SMTP TLS is normally hop-by-hop. It encrypts each connection between systems, but sending and receiving mail providers can generally process the message. End-to-end encryption protects message content so only authorized recipients can decrypt it.

Does email encryption improve inbox placement?

Encryption is not a direct inbox-placement lever like consent, sender reputation, authentication alignment, or complaint rate. However, TLS and correct transport-security configuration can prevent delivery failures, protect credentials and sensitive links, and meet recipient or enterprise security requirements.

What is MTA-STS used for?

MTA-STS lets a receiving domain publish a policy that tells compatible senders to use authenticated TLS when delivering to that domain's approved MX servers. In enforce mode, a compliant sender should not fall back to plaintext delivery when the policy cannot be satisfied.

Should marketing emails contain sensitive information if TLS is enabled?

Usually no. TLS reduces interception risk in transit but does not protect against compromised inboxes, forwarding, screenshots, provider access, or recipients using shared devices. Keep campaign content minimal and direct customers to an authenticated product experience for sensitive actions or documents.