Hi,
I'm trying to make a newsletter application in php (using mail() ).
This application is supposed to look in a MySQL database and generate a
list of emails and first names.
Then it should send an html formated message.
In the theory, I know how to do that, but the hic is ... There are
about 30 000 members.
So I get different kind of errors everytime I try something.
Like 500 Internal Server Error,
or the page would load forever and actually not do everything,
or I would get "Fatal error: Allowed memory size of 8388608 bytes
exhausted at (null):0 (tried to allocate 129 bytes)" ...
I tried both my sending multiple mail() functions in a loop (the way i
prefer), and only one mail() function with the whole coma-separated
list of emails.
Is there an easy way to send massive email?
Please help.
Thank You,
Nathan
I'm trying to make a newsletter application in php (using mail() ).
This application is supposed to look in a MySQL database and generate a
list of emails and first names.
Then it should send an html formated message.
In the theory, I know how to do that, but the hic is ... There are
about 30 000 members.
So I get different kind of errors everytime I try something.
Like 500 Internal Server Error,
or the page would load forever and actually not do everything,
or I would get "Fatal error: Allowed memory size of 8388608 bytes
exhausted at (null):0 (tried to allocate 129 bytes)" ...
I tried both my sending multiple mail() functions in a loop (the way i
prefer), and only one mail() function with the whole coma-separated
list of emails.
Is there an easy way to send massive email?
Please help.
Thank You,
Nathan
Comment