Answers for "Use PHP’s built-in mail () function to send an email message from your email id to your own email id. The subject field should have Daisy. The message body should contain How do you do? My dear friend!"

28

php mail

<?php
$to = $_POST['email'];
$subject = "Email Subject";

$message = 'Dear '.$_POST['name'].',<br>';
$message .= "We welcome you to be part of family<br><br>";
$message .= "Regards,<br>";

// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";

// More headers
$headers .= 'From: <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";

mail($to,$subject,$message,$headers);
?>
Posted by: Guest on May-28-2020

Code answers related to "Use PHP’s built-in mail () function to send an email message from your email id to your own email id. The subject field should have Daisy. The message body should contain How do you do? My dear friend!"

Browse Popular Code Answers by Language