There is no such tag "order_date" or "completed_date" for the gift card email. If you want to have these tags, you edit administrator/components/com_cmgiftcard/helpers/cmgiftcard.php, search for:

$mailTags = array(
'{sender_name}'=>$card->from_name,
'{recipient_name}'=>$card->to_name,
'{gift_card_image}'=>$cardImage,
'{gift_card_amount}'=>HTMLHelper::_('cmgiftcard.formatPrice', $card->amount),
'{gift_card_code}'=>$card->card_code,
'{gift_card_message}'=>$card->message,
);
 
and replace with:
 
$mailTags = array(
'{sender_name}'=>$card->from_name,
'{recipient_name}'=>$card->to_name,
'{gift_card_image}'=>$cardImage,
'{gift_card_amount}'=>HTMLHelper::_('cmgiftcard.formatPrice', $card->amount),
'{gift_card_code}'=>$card->card_code,
'{gift_card_message}'=>$card->message,
'{order_date}'=>HTMLHelper::_('date', $card->created, 'DATE_FORMAT_LC2'),
'{completed_date}'=>HTMLHelper::_('date', $card->completed, 'DATE_FORMAT_LC2'),
);

WE LOVE JOOMLA

Joomwalker is not affiliated with or endorsed by the Joomla Project or Open Source Matters.
The Joomla name and logo are used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.