Hi all, I have been searching with no luck for a simple script that will send an email to my customers when an item comes back into stock on my website: www.fredaldous.co.uk Does anyone know of a decent solution to this? Thanks in advance.
You need integrate to your system. if($stock > 0){ $emails = getCustomerEmails(); // Get customer email was subscribe to the product foreach($emails as $email){ mail($email,"Stock Added","Hello customer,\n Stock Added"); } } PHP: becareful, you email can be spam.