$HTML = "Dear $who,<br><br>Thanks for your order. Payment by: <b> $how </b><br>Total Amount: <b> $much Euros</b><br><br> Thank you."; $from = "me@me.com"; $to = $aForm['sEmail']; $subject = "Order ok nr. $iOrder";
sendHTMLemail($HTML,$from,$to,$subject);
Ok, everything works OK (mail is sent with order id, client name etc), except the var $aData[fSummary] returns nothing. I'm not expert in Php, so please anyone give me a hand. :)
well, it's difficult to help you since you are using an outdated version with God-knows-what installed along (plugins), and no one really has that installed. You may want to use following line to see what $aData array contains and continue from there: print_r ($aData);
You should see a listing on top of the page. Checking out source of the generated page should show you the listing in a nice structured way.