* @copyright 2007-2020 PrestaShop SA * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) * International Registered Trademark & Property of PrestaShop SA */ require_once dirname(__FILE__).'/../../config/config.inc.php'; Tools::displayFileAsDeprecated(); require_once 'ps_emailsubscription.php'; $module = new Ps_Emailsubscription(); if (!Module::isInstalled($module->name)) { exit; } $token = Tools::getValue('token'); require_once dirname(__FILE__).'/../../header.php'; echo $module->confirmEmail($token); require_once dirname(__FILE__).'/../../footer.php';