Jump to content

Rajouter le nom du produit dans le sujet du mail "Product out of stock"


Recommended Posts

Bonjour,

 

J'ai une question toute simple.

 

Quand je reçois une alerte mail (mailalerts) "Product out of stock" je souhaiterais que le sujet du mail contienne le nom du fameux produit qui n'est plus en stock.

 

Comme ça : 

 

[shop_name] Product out of stock - {product_name}
 

(exemple : [boutique blabla] Product out of stock - Mug à pois)

 

Je pense qu'il faut rajouter un bout de code dans  mailalerts.php :

$product_name = Product::getProductName($id_product, $id_product_attribute, $id_lang);
$template_vars = array(
'{qty}' => $quantity,
'{last_qty}' => $ma_last_qties,
'{product}' => $product_name
);

// Do not send mail if multiples product are created / imported.
if (!defined('PS_MASS_PRODUCT_CREATION') &&
file_exists(dirname(__FILE__).'/mails/'.$iso.'/productoutofstock.txt') &&
file_exists(dirname(__FILE__).'/mails/'.$iso.'/productoutofstock.html'))
{
// Send 1 email by merchant mail, because Mail::Send doesn't work with an array of recipients
$merchant_mails = explode(self::__MA_MAIL_DELIMITOR__, $this->merchant_mails);
foreach ($merchant_mails as $merchant_mail)
{
Mail::Send(
$id_lang,
'productoutofstock',
Mail::l('Product out of stock', $id_lang),
$template_vars,
$merchant_mail,
null,
(string)$configuration['PS_SHOP_EMAIL'],
(string)$configuration['PS_SHOP_NAME'],
null,
null,
dirname(__FILE__).'/mails/',
false,
$id_shop
);
}
}
} 

Je ne suis pas très douée en code php et mes quelques essais se soldés par de gros échecs.

 

 

Un petit coup de pouce ?

Merci d'avance !

 

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