שלום לחברי הפורום,
יש לי שאלה קטנה בטופס contact בPHP,
ביצעתי את הטופס אך משום מה המייל אינו נשלח.
הטופס אונליין:
http://www.distancelearning.co.il/contact.php
מצורף גם קובץ ה mail.php שקשור לטופס:
ציטוט:
<?
/*
+--------------------------------------------------------------------------
| ----------------------------------------
+---------------------------------------------------------------------------
*/
function send_mail($to,$content,$subject,$from='or small.co.il')
{
$boundary = md5(uniqid(time()));
//add From: header
$headers = "From: {$from}\r\n";
//specify MIME version 1.0
$headers .= "MIME-Version: 1.0\r\n";
//unique boundary
$boundary = uniqid("EMAIL");
//tell e-mail client this e-mail contains//alternate versions
$headers .= 'Content-type: text/html; charset=windows-1255' . "\r\n";
//HTML version of message
$body .= "<div style='width:100%;direction:rtl;text-align:right;font-family:arial;font-size:12px;'>" . $content . "</div>";
ini_set(sendmail_from, $from);
//send message
mail($to, $subject, $body, $headers);
}
?>
|