View Single Post
ישן 07-09-16, 07:51   # 2
Ori The Man
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: חיפה
גיל: 33
הודעות: 3,694
שלח הודעה באמצעות MSN אל Ori The Man Send a message via Skype™ to Ori The Man

Ori The Man לא מחובר  

הוספתי לך if קטן שבודק אם המייל באמת נשלח

PHP קוד:
<?php 
    header
('Content-Type: text/html; charset=utf-8'); 

    
$to "xxxx@gmail.com"// this is your Email address
   // $first_name = $_POST['///'];
   // $last_name = $_POST['///'];
    
$quantity=$_POST['quantity'];
    
$makat=$_POST['//'];
    
$productname=$_POST['productname'];
    
    
$subject "הזמנה חדשה התקבלה";
    
$message "שם מוצר: \\\\\\";

   
    
    
$sent mail($to,$subject,$message);
    if(
$sent) {
        
header("Location: yourlocation.php");
    }
?>
  Reply With Quote