View Single Post
ישן 26-01-09, 11:15   # 3
Speed
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2008
הודעות: 71

Speed לא מחובר  

קוד תקין לשליחת מייל בעברית

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

Last edited by Speed; 26-01-09 at 11:18..
  Reply With Quote