I have to implement some feedback customer code for getting enroled in their store database. the code is :
try {
$Client = new TrustedShop('key');
$Client->SetEmail();
$Client->AddProduct('Name of first purchased product');
$Client->AddProduct('Name of second purchased product');
$Client->Send();
Nice and simple.
The logic is that after some days, they will send my customer a feedback for asking about their shopping experience on the store.
I have currently embeded it into /public_html/app/design/frontend/base/default/template/persistent/checkout/onepage/billing.phtml
with the $Client->SetEmail($this->getAddress()->getEmail());
No problems here, but (and a big but :) ) how can i retrive the customer's ordered sku in billing phtml? And if the ordered contains 2 or 10 skus how can i send them to my partner ?
Is this the corect path to implement the code, or there is a better location in magento where i can retrive both the customer email and the ordered skus ?
P.S. Sorry if this is a stupidly simplistic question, newbie on the throttle here :)