Here, we will demonstrate how we can send an HTML email message using the PHP program?
Program/Source Code:
The source code to send an HTML e-mail message is given below. The given program is compiled and executed successfully.
<?php //PHP program to send a HTML email message. $ToEmail = "test@includehelp.com"; $sub = "Subject of the email"; $msg = "<h2>We are sending HTML message</h2>"; $header = "From:sender@includehelp.com \r\n"; $header .= "MIME-Version: 1.0 \r\n"; $header .= "Content-type: text/html;charset=UTF-8 \r\n"; $isSuccess = mail($ToEmail, $sub, $msg, $header); if ($isSuccess == true) { printf("Email send successfully"); } else { printf("Email sending failed"); } ?>
Explanation:
Here, we created local variables that are initialized with the following values:
$msg = "<h2>We are sending HTML message</h2>";
Here, we prepared a message with an HTML heading tag <h2>.
$header = "From:sender@includehelp.com \r\n"; $header .= "MIME-Version: 1.0 \r\n"; $header .= "Content-type: text/html;charset=UTF-8 \r\n";
And, we prepared the header to send HTML message.
$isSuccess = mail ($to,$sub,$msg,$header);
We used the mail() method, which is used to send an email message and return the boolean value true or false. The mail() message returns true if the email sends successfully otherwise it returns false.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to send an HTML e-mail message is given below. The given program is compiled and executed successfully.
Explanation:
Here, we created local variables that are initialized with the following values:
Here, we prepared a message with an HTML heading tag <h2>.
And, we prepared the header to send HTML message.
We used the mail() method, which is used to send an email message and return the boolean value true or false. The mail() message returns true if the email sends successfully otherwise it returns false.
need an explanation for this answer? contact us directly to get an explanation for this answer