All TalkersCode Topics

Follow TalkersCode On Social Media

devloprr.com - A Social Media Network for developers Join Now ➔

Send Beautiful Emails Using HTML And PHP

Last Updated : Jul 1, 2023

IN - HTML PHP | Written & Updated By - Anjali

In this tutorial we will show you how to send beautiful emails using HTML and PHP, emails is one of the major source of messaging and customer service and if your message is not eye catching it will not going to be read properly and you loose some of your customers and sales.

You may also like send email using SMTP and PHP Mailer.

Send Beautiful Emails Using HTML And PHP

To Send Beautiful Emails It Takes Only One Step:-

  1. Make a PHP file and define scripting,markup and styling

Step 1. Make a PHP file and define scripting,markup and styling

We make a PHP file and save it with a name email.php

<?php

$to   = "receiver_email";
$from = 'your_email';

$subject = "You Got Mail From TalkersCode"; 

$headers = "From: " . $from . "\r\n";
$headers .= "Reply-To: ". $from . "\r\n";
$headers .= "CC: your_email\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
  
$message = '<html><body>';
$message .= '<h1>Mail From TalkersCode - Thanks for Subscribing</h1>'; 
$message .= '<table width="100%"; style="border:1px solid grey;" cellpadding="15">';
$message .= "<tr><td>Home Page</td><td><a href='http://talkerscode.com'></a></td></tr>";
$message .= "<tr><td colspan=3>Dear Receiver_Name,</td><td>Thanks For Subscribing TalkersCode.com Now You can Access Much More And Premium Features.</td></tr>";
$message .= "</table>";
$message .= "</body></html>";
  
mail($to, $subject, $message, $headers);

?>

In this step we use php built in mail() function to send email.In this we insert some headers which is required to send HTML emails and then we use some HTML and styling in message to make our message more attractive.

You can use any kind of markup in email but make sure to add there required headers otherwise your email is not going to be send.You may also like send mail with attachments using PHP.

Thats all, this is how to send beautiful Emails using HTML and PHP.You can customize this code further as per your requirement. And please feel free to give comments on this tutorial.

I hope this tutorial on send beautiful Emails using PHP helps you and the steps and method mentioned above are easy to follow and implement.

Author Image About Anjali

Experienced Computer Programmer with a broad range of experience in technology. Strengths in application development and Object Oriented architecture design, front end programming, usability and multimedia technology. Expert in coding languages such as C, C++ Java, JavaScript, PHP and more.

Follow Anjali On Linkedin 🡪