Files
silicoflare-website/email.php
2023-01-05 09:54:19 +05:30

28 lines
764 B
PHP

<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>