giralatina Posted February 3, 2011 Share Posted February 3, 2011 Nel File authentication.phpc'è questa porzione di codice $cookie->email = $customer->email; /* mod by PSM for PrestaShop v.italia */ $cookie->piva = $customer->piva; $cookie->cf = $customer->cf; /* END mod by PSM for PrestaShop v.italia */ Module::hookExec('createAccount', array( '_POST' => $_POST, 'newCustomer' => $customer )); Vorrei aggiungere al seguente module Module::hookExec('createAccount' la seguente funzionalità mail('[email protected]', 'UtenteRegistrato', 'Utente registrato')Dove trovo questa funzione?; Link to comment Share on other sites More sharing options...
disarci Posted February 3, 2011 Share Posted February 3, 2011 Allora l'HOOKcreate account, ti permette di inserire un codice all'interno.quindi crei un modulo,all'installazione lo leghi a quell'hooke poi richiami la funzione dell'hook con dentro la stringa di invio mail.Puoi usare l'invio mail classico di php,ma per maggiore compatibilità chiama la funzionesenddella classe Mail.php Link to comment Share on other sites More sharing options...
giralatina Posted February 4, 2011 Author Share Posted February 4, 2011 hai un manuale come di come si crea un modulo? 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