Untitled
3 years ago in Plain Text
<?php
$to = "techymrharsh@gmail.com";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: webmaster@example.com" . "\r\n" .
"CC: techymrharsh@gmail.com";
mail($to,$subject,$txt,$headers);
?>