<?php
foreach ($_REQUEST as $key => $value ){
    $content .= $key.'   '.$value.'<br>';
 }
mail("kdsecor@gmail.com","Someone bought something!",$content,"Content-type:text/html");
//at this point, you have to put any variables you think are awesome into a db.
?>