automatewoo/presets/win-back-customers-recent-products-no-coupon.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

49 lines
1.1 KiB
PHP

<?php
$email_content = <<<EMAIL
Hi {{ customer.first_name | fallback: 'there' }},
Have you seen these great items we just added?
{{ shop.products | type: 'recent' }}
See you soon,
Your friends at {{ shop.title }}
EMAIL;
return [
'title' => 'Win back: Promote recent products',
'description' => 'Trigger an email to encourage customers back to your store by showing them your recent products.',
'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' => "Don't miss the latest products from {{ shop.title }}!",
'email_heading' => 'New products are here!',
'preheader' => '',
'template' => 'default',
'email_content' => $email_content,
],
],
],
];