Hi,
The order number is available with the code:
<?php echo $this->order->order_number; ?>
The customer email address is available with;
<?php echo $this->order->customer->user_email; ?>
The country code is available with :
<?php echo $this->order->shipping_address->address_country->zone_code_2; ?>
There is no "estimated date of delivery". Now, you could create a custom field of the table "order" and of the type "text" to enter the delivery date and in that case you can use such code:
<?php echo $this->order->XXX; ?>
where XXX is the column name of the custom field.
If you want to use the order creation date, you can use such code:
<?php echo hikashop_getDate($this->order->order_created,'Y-m-d'); ?>