PHP קוד:
$email='address';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'content-type: text/html; charset=windows-1255' . "\r\n";
$headers .= 'From:example@example.co.il' . "\r\n" .
'Reply-To: example@example.co.il' . "\r\n" ;
$title= "Your Title";
$msg= 'Your content';
mail ($email , $title , $msg , $headers);
mail