What is SMTP (and why your site needs it)?
A plain-English explanation of SMTP — the protocol that sends email — and why your website needs it configured correctly.
SMTP is a behind-the-scenes technical standard — you never see it directly, but it's what makes email work. Understanding the basics helps you know why website emails sometimes fail and what to do about it.
Quick summary
SMTP (Simple Mail Transfer Protocol) is the system that carries email from sender to recipient. Your website uses SMTP to send automatic emails. Without a properly configured SMTP setup, website emails go to spam or don't arrive at all. Chykalophia configures this when we build your site.
What is SMTP?
SMTP stands for Simple Mail Transfer Protocol. It's the set of rules (a "protocol") that email servers use to send and receive messages.
Think of it like the postal service — SMTP is the delivery network that carries an email from the sender's mail server to the recipient's mail server.
Every email you send — whether from Gmail, Outlook, or your website — passes through SMTP at some point.
Why does my website need SMTP?
Your website sends emails automatically: contact form notifications, order confirmations, password resets. For these to arrive reliably, your website needs to connect to a proper mail server using SMTP.
Without SMTP configured, most websites fall back to a basic server function called PHP mail. This works in theory but:
- Has no email authentication (DKIM signing), so spam filters distrust it
- Is shared with all other sites on the same server — if any of them send spam, your deliverability suffers
- Provides no tracking or delivery logs
- Is blocked entirely by some hosting providers
Proper SMTP configuration connects your website to a trusted email service and solves all these problems.
How SMTP works (the simple version)
Your website generates an email — e.g., an order confirmation after a purchase.
The website connects to an SMTP server using credentials (a username, password, and server address). This is like logging into a mail service.
The SMTP server sends the email to the recipient's mail server.
The recipient's server delivers it to their inbox (or spam folder, depending on authentication and reputation).
SMTP credentials
To connect your website to an SMTP server, you need four pieces of information:
| Setting | Example | What it means |
|---|---|---|
| SMTP host | smtp.postmarkapp.com | The address of the mail server |
| SMTP port | 587 or 465 | The connection port (587 = STARTTLS, 465 = SSL) |
| Username | Your account email or API key | Authenticates your website |
| Password | Your account password or API secret | Authenticates your website |
These credentials come from whichever SMTP service you're using. Chykalophia stores and manages these for the sites we build.
Which SMTP service should my site use?
| Service | Best for |
|---|---|
| Postmark | Reliable transactional email; excellent logs |
| SendGrid | High volume; free tier available |
| Mailgun | Developer-focused; good for mixed use |
| Google Workspace (via Gmail SMTP) | Very small sites; has daily send limits |
| Microsoft 365 (via Outlook SMTP) | Small sites already on Microsoft 365 |
For most small business websites, Postmark or SendGrid are excellent choices. They're affordable, reliable, and provide detailed delivery tracking.
SMTP on WordPress
WordPress has a default email system that often doesn't work well. The most common fix is to install an SMTP plugin that replaces the default system with a proper SMTP connection.
Popular WordPress SMTP plugins include WP Mail SMTP and FluentSMTP. Chykalophia installs and configures these as part of building your site.
Common questions
Related guides
- Email sent from your website explained
- Transactional vs marketing email
- SPF, DKIM & DMARC for email senders
- Why your emails land in spam
- Troubleshooting email problems
Need a hand?
Learn more
Email sent from your website explained
How your website sends automatic emails — form submissions, order confirmations, password resets — and what needs to be set up for them to work reliably.
What happens when we migrate your email
What to expect when Chykalophia moves your email to a new platform — and how we make sure nothing gets lost.