זה לא אמור לקבל את הערכים של ה POST מה FORM ?
PHP קוד:
$mail_to='contact@ofri-jewelry.com';
$mail_Name=$txtName;
$mail_from=$txtEmailfrm;
$mail_sub=$txtSub;
$mail_msg=$txtMsg;
$mail_Pho=$txtPho;
כאילו ככה :
PHP קוד:
$mail_Name=$_POST['txtName'];
$mail_from=$_POST['txtEmailfrm'];
$mail_sub=$_POST['txtSub'];
$mail_msg=$_POST['txtMsg'];
$mail_Pho=$_POST['txtPho'];