Untitled
4 years ago in Plain Text
<?php
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: [email protected]" . "\r\n" .
mail($to,$subject,$txt,$headers);
?>