/**
 * Admin new booking email
 */
if (!defined('ABSPATH')) {
    exit;
    // Exit if accessed directly
}
echo $email_heading . "\n\n";
echo sprintf(__('A new booking has been made by %s. The details of this booking are as follows:', 'woocommerce-bookings'), $booking->get_order()->billing_first_name . ' ' . $booking->get_order()->billing_last_name) . "\n\n";
echo "****************************************************\n\n";
echo sprintf(__('Booked: %s', 'woocommerce-bookings'), $booking->get_product()->get_title()) . "\n";
echo sprintf(__('Booking ID: %s', 'woocommerce-bookings'), $booking->get_id()) . "\n";
if ($booking->has_resources() && ($resource = $booking->get_resource())) {
    echo sprintf(__('Booking Type: %s', 'woocommerce-bookings'), $resource->post_title) . "\n";
}
echo sprintf(__('Booking Start Date: %s', 'woocommerce-bookings'), $booking->get_start_date()) . "\n";
echo sprintf(__('Booking End Date: %s', 'woocommerce-bookings'), $booking->get_end_date()) . "\n";
if ($booking->has_persons()) {
    foreach ($booking->get_persons() as $id => $qty) {
        if (0 === $qty) {
            continue;
        }
        $person_type = 0 < $id ? get_the_title($id) : __('Person(s)', 'woocommerce-bookings');
        echo sprintf(__('%s: %d', 'woocommerce-bookings'), $person_type, $qty) . "\n";
    }
}
echo "\n****************************************************\n\n";
if (wc_booking_order_requires_confirmation($booking->get_order())) {
    echo __('This booking has awaiting for your approval. Please check it and inform the customer if the date is available or not.', 'woocommerce-bookings') . "\n\n";
}
echo apply_filters('woocommerce_email_footer_text', get_option('woocommerce_email_footer_text'));
 /**
  * get_heading function.
  *
  * @return string
  */
 public function get_heading()
 {
     if (wc_booking_order_requires_confirmation($this->object->get_order()) && $this->object->get_status() == 'pending-confirmation') {
         return apply_filters('woocommerce_email_heading_' . $this->id, $this->format_string($this->heading_confirmation), $this->object);
     } else {
         return apply_filters('woocommerce_email_heading_' . $this->id, $this->format_string($this->heading), $this->object);
     }
 }
					<td style="text-align:left; border: 1px solid #eee;"><?php 
        echo $qty;
        ?>
</td>
				</tr>
			<?php 
    }
    ?>
		<?php 
}
?>
	</tbody>
</table>

<?php 
if (wc_booking_order_requires_confirmation($booking->get_order()) && $booking->get_status() == 'pending-confirmation') {
    ?>
<p><?php 
    _e('This booking is awaiting your approval. Please check it and inform the customer if the date is available or not.', 'woocommerce-bookings');
    ?>
</p>
<?php 
}
?>

<p><?php 
echo make_clickable(sprintf(__('You can view and edit this booking in the dashboard here: %s', 'woocommerce-bookings'), admin_url('post.php?post=' . $booking->get_id() . '&action=edit')));
?>
</p>

<?php