Logo
Back to Blog
Security August 15, 2026 8 min read

How to Send a Password Securely (and What Not to Use)

O

OmniWebKit Team

Security Tooling

Share:
Article Cover Image

You encrypted the file properly. Now the password has to reach someone else, and that is where the whole thing usually falls apart. Send both in the same email and you have done a lot of work for nothing.

The rule underneath everything below: the password must travel a different route from the thing it opens. Everything else is detail.

Why sending passwords over email fails, even in a second email

Email was designed to be forwarded, copied and stored. It does all three well and none of them help here.

A message passes through several servers, each of which may log it. It lands in a mailbox that gets backed up, indexed and synced to a phone. If the account is ever compromised, everything in it is compromised at once — including both of your carefully separated emails.

That is the flaw in the "send it separately" advice. Two emails to the same person are not two channels. They are one channel used twice, and an attacker reading the mailbox does not care which order they arrive in.

Email is fine for the encrypted part. Send an encrypted file or string through it happily, then move the password somewhere else entirely — that separation is the reason to encrypt the message first at all.

Sharing a password with a coworker: the routes that hold up

Ranked by how well they work in practice, not by theory.

A password manager's sharing feature. The best answer when both people have one. The password never appears in a message, access can be revoked afterwards, and there is a record of who has it. Setting it up takes ten minutes and removes the problem permanently.

A phone call. Underrated, immediate, and it leaves no written copy anywhere. You also get to confirm you are speaking to the right person, which no written channel does. Never leave it on voicemail — that turns it into a stored recording.

An end-to-end encrypted messaging app. Signal, or WhatsApp at a push. Genuinely encrypted in transit, and the message still lands on a device that might be unlocked on a desk. Use disappearing messages if the app offers them.

In person. Obvious, unbeatable, rarely available. Worth it for something that unlocks a lot.

Whatever you choose, generate the password rather than inventing one — our a password worth sending tool makes something long enough to be worth all this effort.

One-time secret links explained, and why we do not offer one

These services take your text, give you a URL, and destroy the content after it has been read once. Privnote and its relatives have been doing this for years and they are genuinely useful.

The mechanism is better than it sounds. The well-built ones encrypt in your browser and put the key in the fragment of the URL — the part after the hash symbol, which browsers never send to the server. The operator holds ciphertext they cannot read.

Two caveats they rarely lead with. You cannot verify from outside that a given service does it that way, or that it kept doing it after its last redesign. And "read once" fails against link previews: chat apps and email scanners fetch URLs automatically to build a preview card, which burns the link before your recipient opens it. Both of you then assume the worst.

We do not build one because it would require us to hold something, and holding nothing is the only claim on our tool pages we can prove. That is a real limitation of our approach, not a superiority — whether a browser tool can be trusted goes through the trade properly.

What to avoid, in rough order of how often we see it

  • Both halves in one thread. The most common mistake by a wide margin, usually made in a hurry at the end of the day.
  • A shared document or spreadsheet. Revision history keeps deleted passwords readable, and the sharing link outlives everyone's memory of it.
  • A ticketing system or project tool. Searchable forever, visible to the whole team, and exported in every data migration.
  • SMS. Unencrypted between carriers, and vulnerable to someone taking over the phone number.
  • A sticky note on the monitor. Still happens. Still works, right up until the office photo goes on social media.

None of these are catastrophic on their own. They become a problem because passwords sent this way sit around for years, long after the reason for sending them has been forgotten.

The part everyone skips: what happens next

Getting the password there safely is half the job. The other half is what the recipient does with it, and you have no control over that.

Tell them what to expect, in the same message as the encrypted file. Which tool opens it, roughly what the output should look like, and that a failure is more likely to be a copy-paste problem than a wrong password. Our opening what they sent you page exists partly for this, because it names the actual fault instead of showing one unhelpful error.

Then close the loop. Ask them to confirm it opened, and change the password afterwards if it protects something ongoing. A password shared once tends to be shared again by the person you sent it to, and rotation is the only thing that fixes that.

A workable default

For most people, most of the time: encrypt the file, email it, phone them with the password. No accounts, no new software, no trusting anyone's server.

For a team that does this weekly, stop improvising and put a password manager in place. The sharing feature solves it properly and the ten minutes pays for itself the first time somebody leaves.

And keep the failure mode in mind. If the password goes missing entirely, the encrypted file is gone with it — what happens if the password is lost is short, and the answer is not the one people hope for.

Frequently Asked Questions

Is it enough to send the password in a separate email?

+
Barely, and less than people think. Both emails sit in the same mailbox, pass through the same servers and get backed up together. Anyone reading the account reads both, which is the exact case you were guarding against.

Does deleting the message afterwards remove the password?

+
It removes your copy. The recipient still has theirs, the server may keep it in backups for weeks, and any notification preview already reached a lock screen. Deletion is tidying, not security.

Are one-time secret links actually secure?

+
The good ones are well designed and they still require trusting a server. Better implementations put the key in the part of the URL browsers never send, so the operator holds only ciphertext. You cannot verify that from outside, which is the point people skip.

Is reading a password aloud on a phone call safe?

+
For most situations, yes, and it is underrated. It leaves no written copy, needs no software, and confirms who you are talking to. The weakness is voicemail — never leave one, because it becomes a stored recording of your password.

What about splitting a password across two channels?

+
Half by text and half by chat sounds clever and mostly is not. It doubles the chance of a transcription mistake and only helps against an attacker with exactly one channel. Send the whole thing through one good channel instead.

Can I paste a password into a shared document temporarily?

+
Please do not. Shared documents keep revision history, so a deleted password is usually still readable in earlier versions, and the sharing settings often outlive the reason for them. It is one of the most common ways passwords quietly persist.

Is SMS worse than a messaging app?

+
Yes, on two counts. It has no encryption between the networks carrying it, and it is vulnerable to number-porting attacks where someone takes over the phone number itself. A messaging app with end-to-end encryption is better on both.

How should I handle a password for a contractor who leaves in a week?

+
Send it through the channel you would use for a colleague, then change it on the day they finish. The sharing method matters less than the rotation, and rotation is the part that gets forgotten every time.

What if the recipient is not technical at all?

+
Use the phone. Every clever method fails against someone who will paste the password into an email to ask what to do with it. The security of the channel matters less than whether the person can actually use it.

Should I use a hint instead of the password itself?

+
A shared reference works well when you genuinely share history — the street we both lived on, the client we both know. It fails when the hint is guessable from a social media profile, which most personal facts now are.

Tags

#Passwords#Encryption#Privacy#Sharing