# texty/1.1/includes/Notifications/WC/CompleteCustomer.php

Texty – SMS Notification for WordPress, WooCommerce, Dokan and more, version 1.1. 24 lines.

- Page: https://pluginprobe.com/plugins/texty/1.1/code/includes/Notifications/WC/CompleteCustomer.php
- Raw: https://pluginprobe.com/plugins/texty/1.1/raw/includes/Notifications/WC/CompleteCustomer.php
- Modified: 2021-01-22T10:36:00+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/texty/1.1/code/includes/Notifications/WC/CompleteCustomer.php#L10-L20`.

```php
<?php

namespace Texty\Notifications\WC;

class CompleteCustomer extends Base {

    /**
     * Initialize
     */
    public function __construct() {
        $this->title = __( 'Customer - When Order Status is Complete', 'texty' );
        $this->id    = 'order_customer_complete';
        $this->group = 'wc';
        $this->type  = 'user';

        $this->default = <<<'EOD'
Hello {billing_name}, your order #{order_id} with {site_name} has been completed.

Thanks for being with us.
{site_url}
EOD;
    }
}

```
