49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
$email_content = <<<EMAIL
|
|
Hi {{ customer.first_name | fallback: 'there' }},
|
|
|
|
Have you seen these great items we just added? Save XXX% by using the coupon code <strong>{{ customer.generate_coupon | template:'INSERT TEMPLATE COUPON NAME' }}</strong> on your next order!
|
|
|
|
{{ shop.products | type: 'recent' }}
|
|
|
|
See you soon,
|
|
Your friends at {{ shop.title }}
|
|
EMAIL;
|
|
|
|
return [
|
|
'title' => 'Win back: Promote recent products (with coupon)',
|
|
'description' => 'Trigger an email to encourage customers back to your store by showing them your recent products - include a personalized coupon in the email.',
|
|
'type' => 'automatic',
|
|
'trigger' => [
|
|
'name' => 'user_absent',
|
|
'options' => [
|
|
'time' => [
|
|
'22',
|
|
'56',
|
|
],
|
|
'enable_repeats' => 0,
|
|
],
|
|
],
|
|
'rules' => [],
|
|
'timing' => [
|
|
'type' => 'delayed',
|
|
'delay' => [
|
|
'unit' => 'h',
|
|
'value' => 1,
|
|
],
|
|
],
|
|
'actions' => [
|
|
[
|
|
'name' => 'send_email',
|
|
'options' => [
|
|
'to' => '{{ customer.email }}',
|
|
'subject' => 'Save XXX% on the latest products from {{ shop.title }}!',
|
|
'email_heading' => 'New products are here!',
|
|
'preheader' => '',
|
|
'template' => 'default',
|
|
'email_content' => $email_content,
|
|
],
|
|
],
|
|
],
|
|
];
|