PHP: Sending Emails with the mail() and phpmailer Function

By Maulik Paghdal

08 Dec, 2024

PHP: Sending Emails with the mail() and phpmailer Function

Introduction

Sending emails is a crucial feature in modern web applications, from sending verification codes to newsletters. PHP provides multiple ways to handle email functionality, including the built-in mail() function and the popular PHPMailer library. This guide covers the basics of both methods to help you implement email-sending capabilities effectively.


Using the mail() Function

The mail() function is a built-in feature of PHP for sending simple emails. While easy to use, it lacks advanced features like authentication and error handling.

Example: Sending a Basic Email

<?php
$to = "example@example.com";
$subject = "Test Email";
$message = "Hello! This is a test email.";
$headers = "From: webmaster@example.com";

if (mail($to, $subject, $message, $headers)) {
    echo "Email sent successfully.";
} else {
    echo "Failed to send email.";
}
?>

Limitations of mail()

  • No support for SMTP authentication.
  • Emails may get flagged as spam due to lack of proper headers.
  • Difficult to handle errors and debug.

Sending Emails with PHPMailer

PHPMailer is a popular library offering advanced features like SMTP support, HTML emails, and error handling. It is recommended for production applications.

Step 1: Install PHPMailer

Install PHPMailer using Composer:

composer require phpmailer/phpmailer

Step 2: Configure and Send an Email

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

require 'vendor/autoload.php';

$mail = new PHPMailer(true);

try {
    // SMTP Configuration
    $mail->isSMTP();
    $mail->Host = 'smtp.example.com';
    $mail->SMTPAuth = true;
    $mail->Username = 'your-email@example.com';
    $mail->Password = 'your-email-password';
    $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
    $mail->Port = 587;

    // Email Content
    $mail->setFrom('your-email@example.com', 'Your Name');
    $mail->addAddress('recipient@example.com', 'Recipient Name');
    $mail->Subject = 'Test Email with PHPMailer';
    $mail->Body = 'This is a test email sent using PHPMailer.';
    $mail->isHTML(true);

    $mail->send();
    echo "Email sent successfully.";
} catch (Exception $e) {
    echo "Failed to send email. Error: {$mail->ErrorInfo}";
}
?>

Benefits of PHPMailer

  • Secure SMTP authentication.
  • HTML and plain-text email support.
  • Robust error handling.
  • Attachments and embedded images.

When to Use mail() vs. PHPMailer

Featuremail()PHPMailer
Ease of UseSimple for basic tasksSlightly complex but feature-rich
SMTP AuthenticationNoYes
HTML Email SupportLimitedFull
Error HandlingMinimalComprehensive
Attachments SupportNoYes

Use mail() for quick, simple tasks or local testing. Opt for PHPMailer in production for reliability and advanced features.

Conclusion

Both the mail() function and PHPMailer have their places in PHP development. While mail() works for basic tasks, PHPMailer is the go-to choice for robust and secure email functionality. Start experimenting with these methods to enhance your projects with email-sending capabilities.

Happy coding! 📧

Topics Covered