for express checkout the page that generates the email is:
WA_UniversalEmail/EmailTemplates/pp_receipt.php
to show the SKU on the receipt, you can add the following code:
<?php echo $WA_Store_Cart->DisplayInfo("SKU"); ?>
i would probably put it next to the product name, so change:
<strong style="font-size:16px"><?php echo $WA_Store_Cart->DisplayInfo("Name"); ?></strong><br />
to:
<strong style="font-size:16px"><?php echo $WA_Store_Cart->DisplayInfo("Name"); ?>-<?php echo $WA_Store_Cart->DisplayInfo("SKU"); ?></strong><br />
you say it is also not showing the first name? Is in the Billing section? the shipping section? or both?


