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.
Before we dive in, make sure you have the following:
mail()
FunctionPHP 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.';
}
?>
Make sure to replace recipient@example.com
and sender@example.com
with actual email addresses.
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.';
}
?>
MIME-Version
and Content-type
to specify that it’s an HTML email.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:
You can install PHPMailer using Composer:
composer require phpmailer/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;
}
?>
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!