Kevlarbox Posted July 1, 2008 Share Posted July 1, 2008 Ajouter ceci dans le fichier order_follow.php après la ligne 34 : $to = strval(Configuration::get('PS_SHOP_EMAIL')); $toName = strval(Configuration::get('PS_SHOP_NAME')); $customer = new Customer(intval($cookie->id_customer)); if (Validate::isLoadedObject($customer)) Mail::Send(intval($cookie->id_lang), 'order_retour_admin', 'Message from a customer', array( '{lastname}' => $customer->lastname, '{firstname}' => $customer->firstname, '{id_order}' => intval($orderReturn->id_order), '{message}' => $orderReturn->question), $to, $toName, $customer->email, $customer->firstname.' '.$customer->lastname); Créer maintenant 2 fichiers que l'on nommera order_retour_admin.html et order_retour_admin.txt , ouvrir et éditer avec notepad :donc la version html : > <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Message d'un client de {shop_name}</title> </head> <body> </pre> <table style="font-family:Verdana, sans-serif;font-size:11px;color:#374953;width:550px;"> Bonjour, Message de {lastname} {firstname}. Vous avez reçu un nouveau message concernant un retour produit sur la commande n°{id_order} : {message} {shop_name} ©2008 </table> <br></body><br></ht et le fichier version txt : Bonjour, Message de {lastname} {firstname}, Vous avez reçu un nouveau message concernant un retour produit sur la commande n°{id_order} : {message} {shop_name} © 2008 ensuite copier ces 2 fichiers dans le dossier mails qui se trouve à la racine de votre site. Link to comment Share on other sites More sharing options...
FranWeb Posted July 1, 2008 Share Posted July 1, 2008 Cela existe dans la 1RC4 non ? Link to comment Share on other sites More sharing options...
Kevlarbox Posted July 1, 2008 Author Share Posted July 1, 2008 Non, avez-vous vu une fonction mail sur order_follow.php ? Il s'agit d'une notification pour le commerçant uniquement. Sinon faut voir l'info dans l'admin sous 2 onglets pas pratique je pense. Link to comment Share on other sites More sharing options...
FranWeb Posted July 1, 2008 Share Posted July 1, 2008 Ok, merci 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