Jump to content

Mail alerts - wysyłka e-mail


qguar

Recommended Posts

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?

 

koperta.jpg

Link to comment
Share on other sites

  • 8 months later...

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 by hakeryk2 (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...