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