johnsmith153 Posted February 13, 2009 Share Posted February 13, 2009 My server is perfect, other than they won't allow me to send the amount of email I want. (cloud hosting which I like and do not want to move) I thought about getting a VPS server purely for this purpose of sending email. Would I use cURL and send GET requests to a script on this new server like this: www.newserver.com/script.php?subject=&body=&password=tguehguiehguiet and that is it. How else would I do it - for speed etc? I am sending 25,000 a day - so it is pretty important. Link to comment https://forums.phpfreaks.com/topic/145081-php-script-to-send-bulk-email-from-another-server/ Share on other sites More sharing options...
printf Posted February 13, 2009 Share Posted February 13, 2009 All MTA(s) support a spool directory where one can dump thousands / millions of messages that mail server can transfer using envelope groupings, so the mail server opens one connection to the host and deliveries all the mail that is intended for that host. Looping or using any PHP mail class for delivering that many messages is very silly and will get your server flagged, blacklisted very quickly. Link to comment https://forums.phpfreaks.com/topic/145081-php-script-to-send-bulk-email-from-another-server/#findComment-761328 Share on other sites More sharing options...
johnsmith153 Posted February 13, 2009 Author Share Posted February 13, 2009 How would I do it? Link to comment https://forums.phpfreaks.com/topic/145081-php-script-to-send-bulk-email-from-another-server/#findComment-761331 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.