'Add Estimated delivery date range?

I want to add an estimated delivery date range. For example, if ordered today (21st Feb)

The required output should be something this:

Estimated delivery by 24 Feb, Thursday to 26 Feb, Saturday

add_action( 'woocommerce_single_product_summary', 'delivery_date_range',11 );
    
function delivery_date_range() {
   date_default_timezone_set( 'India' );  
    
 // date_from must be from 3rd day (from order date)
 // date_to must be the next 5th days
   
  $html = "<br><div>Estimated delivery by {$date_from} to {$date_to}</div>";
    
   echo $html;
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source