812
צפיות
צפיות
2
תשובות
תשובות
האימייל נשלח בג'יבריש…
קוד ה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 תשובות
אני לא מכיר PHP
אבל תתחיל בהוספת תג meta עם קידוד למייל שנשלח…
אלי ענתבי
entry interactive
http://www.entry.co.il
קוד מתוקן
הנה הקוד המתוקן..
<?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>";
?>
תהנה..