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

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

- Page: https://pluginprobe.com/plugins/yaymail/trunk/code/src/Constants/AttributesData.php
- Raw: https://pluginprobe.com/plugins/yaymail/trunk/raw/src/Constants/AttributesData.php
- Modified: 2025-08-14T01:48:48+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/AttributesData.php#L10-L20`.

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

/**
 * Attributes Data
 */
class AttributesData {
    const TITLE_SIZE_OPTIONS = [
        'default' => 26,
        'small'   => 15,
        'medium'  => 19,
        'large'   => 29,
        'xl'      => 39,
        'xxl'     => 59,
    ];

    const BORDER_DEFAULT = [
        'side'   => 'none',
        'width'  => '1',
        'style'  => 'solid',
        'color'  => YAYMAIL_COLOR_BORDER_DEFAULT,
        'custom' => [
            'top'    => '1',
            'right'  => '1',
            'bottom' => '1',
            'left'   => '1',
        ],
    ];
}

```
