Jump to content

Won't Email


usadarts

Recommended Posts

The code below looks simple enough to me, but emails are not being received.

[code]
<?php
     $teamname = $_POST['teamname'];
     $address = $_POST['address'];
     $city = $_POST['city'];  
     $state = $_POST['state'];
     $zip = $_POST['zip'];
     $coach = $_POST['coach'];
     $phone = $_POST['phone'];
     $email = $_POST['email'];  
     $ym = $_POST['ym'];
     $yl = $_POST['yl'];
     $as = $_POST['as'];
     $am = $_POST['am'];
     $al = $_POST['al'];
     $xl = $_POST['xl'];
     $xxl = $_POST['xxl'];
     $xxxl = $_POST['xxxl'];
     $quantity = $_POST['quantity'];
     $subtotal = $_POST['subtotal'];
     $qtydisc = $_POST['qtydisc'];
     $grandtot = $_POST['grandtot'];
     $sender = "Beach Blast T-Shirts";

mail("$email; [email protected]", "Beach Blast T-Shrt Purchase Order Confirmation",
"
Order Confirmation:

$teamname coached by $coach
$address
$city, $state  $zip
$phone
$email

$ym - Youth Medium (10-12)     
$yl - Youth Large (14-16)      
$as - Adult Small (34-36)     
$am - Adult Medium (38-40)     
$al - Adult Large (42-44)     
$xl - Adult XL (46-48)     
$xxl - Adult 2XL (50-52)     
$xxxl - Adult 3XL (54-56)

Total Quantity Ordered: $quantity

Sub Total: $subtotal
Quantity Discount: $qtydisc

Grand Total: $grandtot

", "From: $sender");

?>[/code]


Thanks,
David
Link to comment
https://forums.phpfreaks.com/topic/7129-wont-email/
Share on other sites

Any ideas?

[code]<?php
     $teamname = $_POST['teamname'];
     $address = $_POST['address'];
     $city = $_POST['city'];  
     $state = $_POST['state'];
     $zip = $_POST['zip'];
     $coach = $_POST['coach'];
     $phone = $_POST['phone'];
     $email = $_POST['email']."; [email protected]";  
     $ym = $_POST['ym'];
     $yl = $_POST['yl'];
     $as = $_POST['as'];
     $am = $_POST['am'];
     $al = $_POST['al'];
     $xl = $_POST['xl'];
     $xxl = $_POST['xxl'];
     $xxxl = $_POST['xxxl'];
     $quantity = $_POST['quantity'];
     $subtotal = $_POST['subtotal'];
     $qtydisc = $_POST['qtydisc'];
     $grandtot = $_POST['grandtot'];
     $sender = "Beach Blast T-Shirts";

mail($email, "Beach Blast T-Shrt Purchase Order Confirmation",
"
Order Confirmation:

$teamname coached by $coach
$address
$city, $state  $zip
$phone
$email

$ym - Youth Medium (10-12)    
$yl - Youth Large (14-16)      
$as - Adult Small (34-36)    
$am - Adult Medium (38-40)    
$al - Adult Large (42-44)    
$xl - Adult XL (46-48)    
$xxl - Adult 2XL (50-52)    
$xxxl - Adult 3XL (54-56)

Total Quantity Ordered: $quantity

Sub Total: $subtotal
Quantity Discount: $qtydisc

Grand Total: $grandtot

", "From: $sender");

?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/7129-wont-email/#findComment-25964
Share on other sites

Still does not work.

[code]<?php
    $teamname = $_POST['teamname'];
     $address = $_POST['address'];
     $city = $_POST['city'];  
     $state = $_POST['state'];
     $zip = $_POST['zip'];
     $coach = $_POST['coach'];
     $phone = $_POST['phone'];
     $email = $_POST['email'];  
     $ym = $_POST['ym'];
     $yl = $_POST['yl'];
     $as = $_POST['as'];
     $am = $_POST['am'];
     $al = $_POST['al'];
     $xl = $_POST['xl'];
     $xxl = $_POST['xxl'];
     $xxxl = $_POST['xxxl'];
     $quantity = $_POST['quantity'];
     $subtotal = $_POST['subtotal'];
     $qtydisc = $_POST['qtydisc'];
     $grandtot = $_POST['grandtot'];
     $sender = "[email protected]";
    
mail("$email", "Beach Blast T-Shirt Purchase Order Confirmation",
"
Order Confirmation:

$teamname coached by $coach
$address
$city, $state  $zip
$phone
$email

$ym - Youth Medium 10-12    
$yl - Youth Large 14-16      
$as - Adult Small 34-36    
$am - Adult Medium 38-40    
$al - Adult Large 42-44    
$xl - Adult XL 46-48    
$xxl - Adult 2XL 50-52    
$xxxl - Adult 3XL 54-56

Total Quantity Ordered: $quantity

Sub Total: $subtotal
Quantity Discount: $qtydisc

Grand Total: $grandtot

", "From: $sender");

?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/7129-wont-email/#findComment-25977
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.