<?
$info = 'ahmedalimody@condize.com';
  $to = 'ahmedalimody@gmail.com';
        $subject = 'Someone has send you a snap';
$message = '<html><body><table rules="all" style="border-color: #666;" cellpadding="10"><tr style='background: #eee;'><td><strong>Hallo,<br></strong> </td></tr><tr><td>Iemand die jou kent, heeft je een Snap toegezonden!</td></tr>';


        $headers = 'From: ' . $info . '' . "\r\n" .
                'Reply-To: ' . $info . '' . "\r\n" .
                'X-Mailer: PHP/' . phpversion();

        mail($to, $subject, $message, $headers);
?>