/**
  * Prepare selected options for giftcard
  *
  * @param  Mage_Catalog_Model_Product $product
  * @param  Varien_Object $buyRequest
  * @return array
  */
 public function processBuyRequest($product, $buyRequest)
 {
     $options = array('giftcard_amount' => $buyRequest->getGiftcardAmount(), 'custom_giftcard_amount' => $buyRequest->getCustomGiftcardAmount(), 'giftcard_sender_name' => $buyRequest->getGiftcardSenderName(), 'giftcard_sender_email' => $buyRequest->getGiftcardSenderEmail(), 'giftcard_recipient_name' => $buyRequest->getGiftcardRecipientName(), 'giftcard_recipient_email' => $buyRequest->getGiftcardRecipientEmail(), 'giftcard_message' => $buyRequest->getGiftcardMessage());
     return $options;
 }