|
Question : How can I send large amounts of emails with php?Answer :There are several ways of doing it depending on how many emails you want to send. The php mail function can send several hundreds of mails with out any problems, but if you want fast sending and execution speed you should look into using a smtp server directly from your script, some examples or mail senders are below.
http://freshmeat.net/projects/mimemessageclass/
http://freshmeat.net/projects/phpsmtp/
http://freshmeat.net/projects/phpmailer/
|