Using SQL I am selecting the following:
SELECT itemid, custid, email FROM tableA;
I can have multiple itemid
for each one Custid
and only one email like
itemid1, custid, email
itemid2, custid, email
itemid3, custid, email
How can i send only one email per customer specified that he has 3 itemid?
thanks