Jump to content

Inviare una mail


giralatina

Recommended Posts

Nel File authentication.php
c'è 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

Allora l'HOOK
create account, ti permette di inserire un codice all'interno.
quindi crei un modulo,
all'installazione lo leghi a quell'hook
e 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 funzione
send
della classe Mail.php

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...