# yaymail/trunk/src/Constants/TemplatesData.php

YayMail – WooCommerce Email Customizer, version trunk. 28 lines.

- Page: https://pluginprobe.com/plugins/yaymail/trunk/code/src/Constants/TemplatesData.php
- Raw: https://pluginprobe.com/plugins/yaymail/trunk/raw/src/Constants/TemplatesData.php
- Modified: 2026-08-23T09:24:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/yaymail/trunk/code/src/Constants/TemplatesData.php#L10-L20`.

```php
<?php
namespace YayMail\Constants;

/**
 * Templates Data
 */
class TemplatesData {
    const WOO_DEFAULT_EMAIL_IDS = [
        'new_order',
        'cancelled_order',
        'failed_order',
        'customer_failed_order',
        'customer_on_hold_order',
        'customer_processing_order',
        'customer_completed_order',
        'customer_refunded_order',
        'customer_invoice',
        'customer_note',
        'customer_reset_password',
        'customer_new_account',
    ];

    const GLOBAL_HEADER_FOOTER_TEMPLATE_IDS = [
        'yaymail_global_header_footer',
        'wp_global_header_footer',
    ];
}

```
