I have a list of people who have registered for a tele-conference...let's say 200-500 people. I would like to send them all an email to remind them. If I were to use the mail() function, how would I do it without choking the server? Can I build a long header string with 200-500 Bcc's? Or call the mail() function 200-500 times in a loop?
Second question...How could I automate the process so that I could schedule this without calling up a web page?
Thanks.