When you set up an email account in any mail client — Outlook, Thunderbird, Apple Mail, or a mobile app — you're asked to configure IMAP or POP3 for incoming mail and SMTP for outgoing mail. Most people enter the settings without really understanding what they mean. That works fine until something breaks or you want to set up multiple devices, at which point understanding the protocols becomes genuinely useful. ## What Is SMTP? SMTP stands for Simple Mail Transfer Protocol. It's the protocol used to send email. When you click Send in your email client, the client uses SMTP to transfer your message to your mail server, which then uses SMTP to deliver it to the recipient's mail server. **SMTP ports:** - Port 25 — the original SMTP port, mostly used for server-to-server delivery. Many ISPs block outbound port 25 to prevent spam. - Port 587 — the standard port for email clients to submit mail to a mail server. This is what you should use for outgoing mail in your email client. - Port 465 — an older SSL-only port that some clients still support as a fallback. In practice: use port 587 with STARTTLS for your outgoing mail settings. If that doesn't work, try port 465 with SSL/TLS. ## What Is IMAP? IMAP stands for Internet Message Access Protocol. It's the modern standard for reading email on multiple devices while keeping everything synchronized. When you use IMAP, your email stays on the server. Your email client downloads copies of messages to display them, but the originals remain on the server. This means: - You can access the same email from your phone, your laptop, and your desktop and see the same messages everywhere - Marking a message as read on one device marks it as read everywhere - Moving a message to a folder on one device moves it everywhere - Deleting a message on one device deletes it everywhere **IMAP ports:** - Port 993 — IMAP over SSL/TLS (recommended) - Port 143 — plain IMAP with optional STARTTLS Use port 993 with SSL for your incoming mail settings. ## What Is POP3? POP3 stands for Post Office Protocol version 3. It's the older alternative to IMAP and works quite differently. When you connect with POP3, your email client downloads messages from the server to your device and (by default) deletes them from the server. This means: - Email lives on one device only - You can't access the same messages from multiple devices - If your device dies, you lose your email history (unless you have local backups) **POP3 ports:** - Port 995 — POP3 over SSL/TLS (recommended if using POP3) - Port 110 — plain POP3 ## IMAP vs POP3: Which Should You Use? For almost everyone in 2026, IMAP is the right choice. The ability to access email consistently across multiple devices is essentially essential for modern work. Even if you primarily use a desktop computer, you almost certainly check email on your phone too — and POP3 makes that experience frustrating. The one scenario where POP3 still makes sense is if you have a very limited server storage plan and want to keep email stored locally rather than on the server. But given that modern email plans (including ByteSMTP) provide generous storage, this is rarely a practical concern. **Use IMAP if:** - You check email on more than one device - You want consistent read/unread status across devices - You want your email history accessible from anywhere - You use webmail in addition to a desktop client **Use POP3 only if:** - You use exactly one device for email and never plan to change that - You have a specific need to store email locally and remove it from the server - You're connecting to a very old email system that doesn't support IMAP ## Configuring Email Clients with ByteSMTP When you add a ByteSMTP account to your email client, use these settings: **Incoming mail (IMAP):** - Server: mail.bytesmtp.com - Port: 993 - Security: SSL/TLS - Username: your full email address - Password: your mailbox password **Outgoing mail (SMTP):** - Server: mail.bytesmtp.com - Port: 587 - Security: STARTTLS - Username: your full email address - Password: your mailbox password (same as incoming) - Authentication: required These settings work with Outlook, Apple Mail, Thunderbird, Gmail (as an added account), and virtually any other standard email client. Mobile apps like Edison Mail, Spark, and the built-in iOS and Android mail apps all support these protocols as well. ## A Note on Security Whichever protocol you use, always connect over an encrypted connection — SSL/TLS for IMAP and SMTP with STARTTLS for submission. Never use plain, unencrypted connections for email, especially on public networks. Your email client will warn you if you're about to connect without encryption, and that warning should be taken seriously. Understanding IMAP, POP3, and SMTP demystifies a lot of the "magic" that happens every time you send or receive an email. The protocols are decades old and remarkably stable — the SMTP specification hasn't fundamentally changed since 1982, which is part of why email remains such a universal communication standard despite the rise of messaging apps and collaborative tools.