xav91 Posted May 12, 2014 Share Posted May 12, 2014 (edited) bonjour, j'ai déja posté plus bas un sujet, mais je préfere diviser les 2 questions qui étaient dedans. voila, je souhaite qu'un mail soit envoyé (au marchand ou autre) suite à la confirmation de paiement d'une commande. j'ai donc modifié mon fichier mailalerts.php comme ceci public function install($delete_params = true) { if (!parent::install() || !$this->registerHook('actionValidateOrder') || ........ !$this->registerHook('actionPaymentConfirmation') // <== ajout de cette ligne pour la confirmation de paiement ....... } puis ma fonction public function hookActionPaymentConfirmation($params) { $donnees = array( '{prenom}' => 'prenom', '{nom}' => 'nom' ); Mail::Send((int)Context::getContext()->language->id, 'montemplate', 'mail test', $donnees, Configuration::get('PS_SHOP_EMAIL'), null, null, null, null, null, dirname(__FILE__).'/mails/'); } j ai bien créé mes fichiers montemplate.html et montemplate.txt dans mails/fr/ mais je ne reçois pas de mails ou est mon erreur ? à moins qu 'il existe déja un module qui me permettrait de gérer tout ça directement, même payant. Edited May 13, 2014 by xav91 (see edit history) Link to comment Share on other sites More sharing options...
xav91 Posted May 13, 2014 Author Share Posted May 13, 2014 c'est bon, il existait bien un module 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