I need to mail users of my Web site on a regular basis. All their data are already in MySQL databases and I'd need those data to include them in the e-mails, so I need to stick with PHP instead of common mailing list softwares. I was just writing a piece of code that just SELECT the data from the database, e-mail address included, and the uses the mail() function in a while operation. It just struck me that having a few thousands of recipients I would bog down the server with such operation. Anyone has any comment on this from past experiences? Thank you in advance.