Search found 1 match

by Frantic Cruiser
Thu Mar 11, 2004 6:16 am
Forum: PHP - Code
Topic: Mass Email?
Replies: 6
Views: 1043

sendmail to 5000 recipiënts

It is worth noting that the mail() function is not suitable for larger volumes of email in a loop. This function opens and closes an SMTP socket for each email... not very efficient. To send email using sockets, I suggest reading this: http://cr.yp.to/smtp.html and taking a look at the functions us...