Hello
Thank you, I used this simple code to add delivery date info into email.
<?php
add_action ('woocommerce_email_after_order_table', 'delivery_date_for_email');
function delivery_date_for_email ($order) {
$delivery_date = get_post_meta($order->id,"delivery_date",true);
echo $delivery_date;
How can I customise a text result with CSS?
Thanks.