שלח תשובה

זירת השאלות

812
צפיות
2
תשובות

האימייל נשלח בג'יבריש…

,‏ 7 במאי, 2008

קוד הPHP :


<?php
$to = "[email protected]";
$subject = "Contact Us From ssc.co.il";
$email = $_REQUEST[’email'] ;
$message = $_REQUEST['message'] ;
$headers = "From: $email";
$sent = mail($to, $subject, $message, $headers) ;
if($sent)
{
    $ans = "האימייל נשלח בהצלחה ! ";
}
else
{
    $ans = "האימייל לא נשלח , נוצרה בעיה בעת השליחה !";
}
    echo "<html><head>";
    echo "<script language=\"javascript\">";
    echo "setTimeout(\"location.href='http://www.ssc.co.il' \",1700)";
    echo "</script>";
    echo "</head><body>";
    echo "<br />";
    echo "<br />";
    echo "<center><h2>$ans</h2>";
    echo "מבצע העברה ל…  <h3><a href=\"http://www.scc.co.il\">ssc.co.il</a></h3></center>";
    echo "</body></html>";
?>

תגיות:

2 תשובות

  1. אני לא מכיר PHP
    אבל תתחיל בהוספת תג meta עם קידוד למייל שנשלח…


    אלי ענתבי
    entry interactive
    http://www.entry.co.il

  2. Xinxy הגיב:

    קוד מתוקן
    הנה הקוד המתוקן..

    <?php
    $to = "[email protected]";
    $subject = "Contact Us From ssc.co.il";
    $email = $_REQUEST[’email'] ;
    $message = $_REQUEST['message'] ;
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=windows-1255' . "\r\n";
    $sent = mail($to, $subject, $message, $headers) ;
    if($sent)
    {
        $ans = "האימייל נשלח בהצלחה ! ";
    }
    else
    {
        $ans = "האימייל לא נשלח , נוצרה בעיה בעת השליחה !";
    }
        echo "<html><head>";
        echo "<script language=\"javascript\">";
        echo "setTimeout(\"location.href='http://www.ssc.co.il' \",1700)";
        echo "</script>";
        echo "</head><body>";
        echo "<br />";
        echo "<br />";
        echo "<center><h2>$ans</h2>";
        echo "מבצע העברה ל…  <h3><a href=\"http://www.scc.co.il\">ssc.co.il</a></h3></center>";
        echo "</body></html>";
    ?>

    תהנה..

שלח תשובה