</>
ShikshaCSLearn. Code. Grow.
๐Ÿ”
โ˜• Support Us
ShikshaCSโ€บNotesโ€บComputer Networks
Computer Networks
๐Ÿ•’ 8 min read

Email Protocols (SMTP, POP3, IMAP)

The three protocols working together every time you send or check email.

SMTP โ€” Sending Email

SMTP (Simple Mail Transfer Protocol) is used for SENDING email โ€” from your email client to your mail server, and from that server onward to the recipient's mail server. It's a 'push' protocol, meaning it's specifically designed to move mail forward toward its destination, not for a user to browse or read their inbox.

POP3 โ€” Download and Remove

POP3 (Post Office Protocol version 3) is used for RETRIEVING email, with a simple approach: it downloads messages from the server to your device, and by default, DELETES them from the server afterward. This made sense in the early internet era when storage was expensive, but it means your email is only really accessible from the ONE device that downloaded it.

IMAP โ€” Sync Across Devices

IMAP (Internet Message Access Protocol) is a more modern retrieval protocol that keeps email SYNCHRONIZED across multiple devices โ€” messages stay on the server, and any action (reading, deleting, organizing into folders) is reflected everywhere you check your email, whether on your phone, laptop, or a web browser.

Why IMAP Won Out for Most Users

Since most people today check email from multiple devices (phone, laptop, tablet), IMAP's server-side synchronization is far more convenient than POP3's download-and-delete model. Most modern email providers (Gmail, Outlook) default to IMAP for exactly this reason โ€” POP3 is now mostly used for specific legacy or storage-limited use cases.

How They Work Together

A typical email journey: you compose a message in your email client, which uses SMTP to send it to your provider's outgoing mail server, which uses SMTP again to relay it to the recipient's mail server. The recipient then uses IMAP (or occasionally POP3) to retrieve and read that message from their own mail server โ€” SMTP handles the 'sending journey', while IMAP/POP3 handle the 'reading' side.

๐ŸŒ Real-World Use

When you send an email from Gmail to someone on Outlook, SMTP handles passing that message between Google's and Microsoft's mail servers behind the scenes โ€” and when the recipient opens it on their phone AND laptop, IMAP is what keeps 'read' status and folder organization consistent across both devices.

๐Ÿ’ก Pro Tip

A frequently tested distinction: SMTP is ONLY for sending, never for reading/retrieving email โ€” a common exam trap is asking 'which protocol would you use to check your inbox: SMTP, POP3, or IMAP?' and SMTP is deliberately the wrong (trick) answer there.

๐Ÿงช Quick Self-Test

Check what you just learned โ€” no pressure, just practice.

1. Which protocol is used for SENDING email?

2. What does POP3 typically do with email after downloading it?

3. Why do most modern users prefer IMAP over POP3?

โ† Back to all Notes