How to Send Emails Using PHP: A Step-by-Step Guide

In this guide, we’ll explore how to send emails using PHP. Whether you're building a contact form or sending notifications, this tutorial will provide you with clear examples and practical tips to get started.
By Taylor

Sending emails through PHP is a common task for web developers. Whether you’re looking to send newsletters, notifications, or user feedback, PHP makes it easy to send emails directly from your web applications. In this tutorial, we’ll walk through the basics of sending emails using PHP, along with some practical examples.

Prerequisites

Before we dive in, make sure you have the following:

  • A PHP environment set up (like XAMPP, MAMP, or a live server)
  • Basic knowledge of PHP syntax

1. Using the mail() Function

PHP provides a built-in function called mail() that allows you to send emails. Here’s a simple example:

<?php
$to = 'recipient@example.com'; // Recipient's email address
$subject = 'Hello from PHP'; // Email subject
$message = 'This is a test email sent using PHP!'; // Email message
$headers = 'From: sender@example.com' . "\r\n" .
           'Reply-To: sender@example.com' . "\r\n" .
           'X-Mailer: PHP/' . phpversion(); // Email headers

// Send the email
if(mail(\(to, \)subject, \(message, \)headers)) {
    echo 'Email sent successfully!';
} else {
    echo 'Email sending failed.';
}
?>

Explanation:

  • $to: The recipient’s email address.
  • $subject: The subject line of the email.
  • $message: The body of the email.
  • $headers: Additional headers, like the sender’s email address and reply-to.

Make sure to replace recipient@example.com and sender@example.com with actual email addresses.

2. Sending HTML Emails

You can also send HTML emails to make your messages more visually appealing. Here’s how:

<?php
$to = 'recipient@example.com';
$subject = 'HTML Email from PHP';
$message = '<html><body>'; 
$message .= '<h1 style="color: blue;">Hello!</h1>';
$message .= '<p>This is an HTML email sent using PHP.</p>';
$message .= '</body></html>';

// Set content-type header for sending HTML email
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type:text/html;charset=UTF-8' . "\r\n";
$headers .= 'From: sender@example.com' . "\r\n";

// Send the email
if(mail(\(to, \)subject, \(message, \)headers)) {
    echo 'HTML email sent successfully!';
} else {
    echo 'HTML email sending failed.';
}
?>

Key Differences:

  • The message is wrapped in HTML tags, which allows you to style the content.
  • The headers include MIME-Version and Content-type to specify that it’s an HTML email.

3. Using PHPMailer for Advanced Features

While the mail() function is suitable for basic tasks, you might want to use a library like PHPMailer for more advanced features like SMTP authentication, attachments, and better error handling. Here’s a quick example:

Step 1: Install PHPMailer

You can install PHPMailer using Composer:

composer require phpmailer/phpmailer

Step 2: Sending an Email with PHPMailer

Here’s a simple example of using PHPMailer to send an email:

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

require 'vendor/autoload.php';

$mail = new PHPMailer(true);
try {
    //Server settings
    $mail->isSMTP(); // Set mailer to use SMTP
    $mail->Host = 'smtp.example.com'; // Specify main and backup SMTP servers
    $mail->SMTPAuth = true; // Enable SMTP authentication
    $mail->Username = 'your_email@example.com'; // SMTP username
    $mail->Password = 'your_password'; // SMTP password
    $mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
    $mail->Port = 587; // TCP port to connect to

    //Recipients
    $mail->setFrom('from@example.com', 'Mailer');
    $mail->addAddress('recipient@example.com', 'Recipient'); // Add a recipient

    // Content
    $mail->isHTML(true); // Set email format to HTML
    $mail->Subject = 'Here is the subject';
    $mail->Body    = 'This is the HTML message body in bold!';
    $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

    $mail->send();
    echo 'Message has been sent';
} catch (Exception $e) {
    echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}
?>

Key Features of PHPMailer:

  • SMTP support for sending emails through a mail server.
  • More customization options for email content.
  • Error handling to catch issues during email sending.

Conclusion

Sending emails in PHP can be straightforward with the built-in mail() function or more powerful using libraries like PHPMailer. Experiment with these examples, and soon you’ll be sending emails like a pro! If you have any questions or need further assistance, feel free to reach out. Happy coding!