qguar Posted June 11, 2018 Share Posted June 11, 2018 Zainstalowaną mam wtyczkę mail alerts w sklepie, która odpowiada za wysyłanie powiadomienia klientowi kiedy produkt jest dostępny. Wcześniej musi on wpisać w pole tekstowe swój mail i zgłosić chęć takiego powiadomienia. Tyle że cokolwiek nie wpisze w pole tekstowe wtyczka i tak daje komunikat że jest ok. Wie ktoś jak dopisać weryfikację czy wpisany tekst jest adresem e-mail? Link to comment Share on other sites More sharing options...
hakeryk2 Posted February 16, 2019 Share Posted February 16, 2019 (edited) Nie jestem pewien ale tam jest sprawdzanie. Bazuję na 1.6 ale możesz dopisać dodatkowe sprawdzanie w modules/mailalerts/controllers/front/actions.php w funkcji public function processAdd() - zamień to { $id_customer = (int)$context->customer->id; $customer = new Customer($id_customer); $customer_email = (string)$customer->email; } else { $customer_email = (string)Tools::getValue('customer_email'); $customer = $context->customer->getByEmail($customer_email); $id_customer = (isset($customer->id) && ($customer->id != null)) ? (int)$customer->id : null; } na to if ($context->customer->isLogged()) { $id_customer = (int)$context->customer->id; $customer = new Customer($id_customer); $customer_email = (string)$customer->email; if (!Validate::isEmail($customer_email)) die('0'); } else { $customer_email = (string)Tools::getValue('customer_email'); if (!Validate::isEmail($customer_email)) die('0'); $customer = $context->customer->getByEmail($customer_email); $id_customer = (isset($customer->id) && ($customer->id != null)) ? (int)$customer->id : null; } Piszę bez sprawdzenia tego ale w 1.6 gdy wpiszę niepoprawny email to wypluwa błąd. Ponadto warto ustawić limit na np 15 wpisów z tego samego adresu mailowego by nie sprawić że ktoś może mieć zaspamowaną skrzynkę. Edited February 16, 2019 by hakeryk2 (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now