From 0dcf636cc05e03a3a734acf176923fb64b4efa99 Mon Sep 17 00:00:00 2001 From: lartist Date: Wed, 31 May 2023 16:06:12 +0200 Subject: [PATCH] Correct mail template path --- ps_emailalerts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ps_emailalerts.php b/ps_emailalerts.php index 121d452..f0f6e33 100644 --- a/ps_emailalerts.php +++ b/ps_emailalerts.php @@ -1066,7 +1066,7 @@ public function hookActionOrderEdited($params) $data, $order->getCustomer()->email, $order->getCustomer()->firstname . ' ' . $order->getCustomer()->lastname, - null, null, null, null, _PS_MAIL_DIR_, true, (int) $order->id_shop); + null, null, null, null, dirname(__FILE__) . '/mails/', true, (int) $order->id_shop); } public function renderForm()