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_
$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'),
);