mirror of
https://github.com/silicoflare/silicoflare-website.git
synced 2026-05-26 20:17:58 +05:30
28 lines
764 B
PHP
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>
|