I've a authenticated database of one million e-mail IDs. I need to send a single email to all these email IDs.
I've a PHP web application using simple PHP mail()
function. But i found it is not reliable when sending a very large number of emails in a short span. Now I'm trying to build an application with PHP-PEAR Mail_Queue.
Before spending too much of time on this new application, please let me know whether this Mail_Queue will support sending bulk mails ranging one million in one or two day. (Assume i've 4 core SSD server to perform this operation)
I found this Mail_Queue using SMTP authentication to send emails. Since my 'From' email address associate with Google apps. So by using the same address, will I able to send the entire emails?
Is there any better solution to send the entire emails in a short span (not Like Mail Chimp)