Create email.php

This commit is contained in:
SilicoFlare
2023-01-05 09:54:19 +05:30
committed by GitHub
parent ca43ac65fa
commit 413c3a90bb

27
email.php Normal file
View File

@@ -0,0 +1,27 @@
<html>
<head>
<title>Sending HTML email using PHP</title>
</head>
<body>
<?php
$to = "silicoflare@gmail.com";
$subject = "This is subject";
$message = "<b>This is HTML message.</b>";
$message .= "<h1>This is headline.</h1>";
$header = "From:abc@somedomain.com \r\n";
$header .= "Cc:afgh@somedomain.com \r\n";
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-type: text/html\r\n";
$retval = mail ($to,$subject,$message,$header);
if( $retval == true ) {
echo "Message sent successfully...";
}else {
echo "Message could not be sent...";
}
?>
</body>
</html>