/var/www/html_fr/wp-content/plugins/yaymail/templates/emails/admin-cancelled-order.php


1
2
3
4
5
6
7
8
9
10
11
12
<?php

use YayMail\Emails\CancelledOrder;

defined'ABSPATH' ) || exit;

$template CancelledOrder::get_instance()->template;

if ( ! empty( 
$template ) ) {
    
$content $template->get_content$args ); // TODO: process args later.
    
yaymail_kses_post_e$content );
}