Forum Moderators: buckworks
I have an oscommerce cart. I have a customer control panel where I can see the customer id names, etc. How can i add customer email address to that panel.
Also how can i send email to all my customers or to a selected customers.
thank you.
tools > send email (mail.php) -- has options for individuals, all customers, or all newsletter subscribers.
To display the email address in the customers panel, you need to insert a new column in the page design (lines ~ 750 onwards) to echo it; like so:
<td class="dataTableContent"><?php
echo $customers['customers_email_address'];
//or maybe $cInfo['customers_email_address']
//I can't remember
?></td>
I hope you can help.