惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
C
Check Point Blog
月光博客
月光博客
L
LangChain Blog
GbyAI
GbyAI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
No errors, but the email never arrives — it's probably no...
Sho Naka · 2026-06-24 · via DEV Community

Sho Naka

I wrote this after building my own site, watching the contact form "succeed" while the notification email silently never showed up — and quietly blaming my own code for half an hour. I worked the framing out with an AI as a sounding board, but the experience and the conclusions are mine.

You put a contact form on your site. You press submit, and "Thank you" appears. That part works. But the notification email to yourself? It never comes.

You wrote the code exactly like the tutorial said. You read it again, character by character. Not a single typo. No errors anywhere. And still, nothing arrives.

Thirty minutes hunting for a mistyped character. You don't find it. And somewhere in there, a thought creeps in: "Maybe I'm just not cut out for programming."

What's actually happening here isn't a technical wall. It's a misattribution — the false belief that you are the problem.

So let me say the most important thing first: your code is probably fine.

The cause isn't inside your code — it's outside it

When email won't send, we reach for the code first. We wrote it, so of course we do. But the reason email doesn't arrive is more often outside the code than inside it.

Think of a paper letter. You write the message, address the envelope, seal it. That's the code's job, and you did it correctly. But a sealed letter doesn't arrive just because you dropped it in a mailbox. The collection system, the delivery route, the recipient's mailbox — if it stalls at any of those, your perfectly written letter still doesn't reach anyone.

Sending email is the same. The code's job ends at "write the message and ask for it to be sent." The thing that actually carries it is a separate system downstream — the mail delivery infrastructure. People with ten years of programming experience still trip here every time. This is not a measure of your skill.

You blame yourself because there's no error

Why do we misattribute the cause to our own code? The reason is clear: this kind of failure happens without throwing any error at all.

If your code is syntactically wrong, the screen tells you in red. You know where to fix it. But when "write it and ask for it to be sent" runs fine, the code just shrugs and says, "I did my part." No error. And yet no email. Left standing in that silence, with nothing scolding you, you start to doubt yourself.

But trace the logic backwards. No error means the part you wrote — assembling the message and requesting the send — finished its job correctly. You aren't being scolded because there's no mistake there to scold.

Isolate "my code" vs "the delivery," and the doubt disappears

The way to kill the self-doubt isn't emotional — it's procedural. Separate "is this a code problem?" from "is this a delivery problem?" and the limbo ends.

For learning and verification, the combination that confuses the least is PHPMailer as the sending library and Mailtrap (a testing service) as the destination. Mailtrap doesn't actually send to anyone — it catches your "as-if-sent" emails and shows them to you, like a dress rehearsal for delivery.

If it arrives there, your code was correct. If it doesn't, the cause really is on the delivery side. Either way, the "maybe it's me" doubt is gone. That's the fastest way out of limbo.

You don't need to understand the machinery — just isolate first

If you try to understand the whole mail-delivery system before anything else, you wander into a deep forest of infrastructure and drift away from the thing that matters: finishing your own site.

The order is backwards. First, make one send flow work with PHPMailer. Watch it arrive. Confirm your code was right. The operational details — which production mail provider to pick, how to log failed sends — you stack on later, one layer at a time.

The real identity of "sending email is hard" isn't the difficulty of PHP. It's the complexity of the delivery infrastructure sitting outside PHP. And that's less a wall you must scale than one you can detour around at first. Finish what you're building, and come back to it when you're ready. There's still time.

The hands you were blaming were writing correct code all along. What was stopping you wasn't your ability — it was the delivery machinery outside the code.


The technical details

From here on is for readers who want to verify the above technically.

Why fixing the code doesn't help

When the mail / mb_send_mail samples don't work, the cause is usually not PHP syntax but SMTP configuration or delivery restrictions. Two typical cases:

  • You can't send from a local environment to an external address (security restrictions block the delivery path)
  • The OS-side mail delivery config (sendmail / postfix) is unset

So editing the code alone won't solve it. The problem lives outside PHP.

The shortest setup for learning

  • Sending library: PHPMailer
  • SMTP verification target: Mailtrap (a testing service)

With this setup, "the delivery-infrastructure trap" and "a PHP code problem" are easy to separate. Arrives at Mailtrap → your code is correct. Doesn't arrive → it's the delivery side.

A minimal PHPMailer example

<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require 'PHPMailer/src/PHPMailer.php';
require 'PHPMailer/src/Exception.php';
require 'PHPMailer/src/SMTP.php';

$username = ''; // Mailtrap Username
$password = ''; // Mailtrap Password

try {
    $mail = new PHPMailer(true);
    $mail->CharSet = 'utf-8';
    $mail->isSMTP();
    $mail->Host = 'sandbox.smtp.mailtrap.io';
    $mail->SMTPAuth = true;
    $mail->Username = $username;
    $mail->Password = $password;
    $mail->SMTPSecure = 'tls';
    $mail->Port = 2525;

    $mail->setFrom('dummy@example.com');
    $mail->addAddress('dummy@example.com');
    $mail->Subject = 'Test send';
    $mail->Body = 'Body text';

    $mail->send();
    echo 'Sent';
} catch (Exception $e) {
    echo 'Failed: ' . $mail->ErrorInfo;
}

Fill in $username and $password from Mailtrap and you have a working verification.

Why Mac trips you up in particular

On Windows you can sometimes get by with XAMPP's sendmail config. On Mac, Postfix gets involved — editing main.cf, managing credentials, reloading the service — and the difficulty climbs for beginners. Go down that layer and you've left the main goal of learning PHP behind. Confirm your send logic with PHPMailer first; it's more practical.

When you do look toward production

Production sending is less about "can it send" and more about "can it keep running." Provider limits, safe credential management, retry-and-log on failure — viewed that way, an explicit SMTP connection via PHPMailer is more maintainable than mb_send_mail alone.

Priority order when you're stuck

  1. Confirm the send flow with PHPMailer + Mailtrap
  2. Implement logging for send failures
  3. Switch to production SMTP in stages