View Single Post
ישן 03-07-07, 15:42   # 2
erezse
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Jun 2007
הודעות: 156

erezse לא מחובר  

PHP קוד:
<?php 
$mail_to 
"to_the_mail@your_host.com";  

/* הדוא"ל שאתם רוצים לשלוח אליו את המייל , טיפ קטן:  
נסו קודם לשלוח לעצמכם ואז לשלוח למען האמיתי */ 

$subject "my_subject"
$message '<html> 
        <head><title></title><meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1255"></head> 
        <body><center> 
        <font size="2" color="red">Hello World</font> 
        </center> 
        </body></html>'


$headers  "MIME-Version: 1.0 \r\n"
$headers .= "Content-type: text/html; charset=windows-1255 \r\n"
$headers .= "From: your_mail@isp.com \r\n"

mail($mail_to$subject$message$headers ); 

?>
דגש על השורה הנ"ל:
PHP קוד:
$headers .= "Content-type: text/html; charset=windows-1255 \r\n"
window-1255 קידוד לעברית

נלקח מ- learnphp.co.il
  Reply With Quote