You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
customer account filters are now available in Frontend API
- adds order and complaint filtering by search, date range, and status codes
- exposes status counts for dynamic customer account status tabs
- extends GraphQL coverage for the new filter behavior
@@ -52,6 +55,18 @@ public function up(Schema $schema): void
52
55
'domainId' => $domainId,
53
56
],
54
57
);
58
+
59
+
$this->sql(
60
+
'UPDATE mail_templates SET subject = :subject, body = :body WHERE name = :mailTemplateName AND domain_id = :domainId',
61
+
[
62
+
'mailTemplateName' => self::COMPLAINT_STATUS_3,
63
+
'subject' => t('Status of complaint with number {complaint_number} from order number {order_number} created on {date} has changed', [], Translator::DEFAULT_TRANSLATION_DOMAIN, $domainLocale),
64
+
'body' => $this->wrapMailTemplateBodyForGrapesJs(
65
+
t('Dear customer, <br /><br />Your complaint with number {complaint_number} from order number {order_number} created {date} with preferred resolution {complaint_resolution} is being processed. For more information, visit <a href="{complaint_detail_url}" tabindex="0">complaint detail</a>.<br /><br />Do you need anything else? Visit our <a href="{url}" tabindex="0">website</a>.', [], Translator::DEFAULT_TRANSLATION_DOMAIN, $domainLocale),
0 commit comments