| 1 |
<?php |
| 2 |
|
| 3 |
namespace Texty\Notifications; |
| 4 |
|
| 5 |
class OrderCompleteCustomer extends OrderBase { |
| 6 |
|
| 7 |
/** |
| 8 |
* Initialize |
| 9 |
*/ |
| 10 |
public function __construct() { |
| 11 |
$this->title = __( 'Customer - When Order Status is Complete', 'texty' ); |
| 12 |
$this->id = 'order_customer_complete'; |
| 13 |
$this->group = 'wc'; |
| 14 |
$this->type = 'user'; |
| 15 |
|
| 16 |
$this->default = <<<'EOD' |
| 17 |
Hello {billing_name}, your order #{order_id} with {site_name} has been completed. |
| 18 |
|
| 19 |
Thanks for being with us. |
| 20 |
{site_url} |
| 21 |
EOD; |
| 22 |
} |
| 23 |
} |
| 24 |
|