
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
$to = "kdh5422@balubaid.com.sa";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: crm@nfhc.sa" . "\r\n" .
"CC: mah1082@balubaid.com.sa";

mail($to,$subject,$txt,$headers);
?>