PHP Script To Test Send Email

Sometimes sending email could be pain in the ass for some server. Especially if it is a share hosting that has blacklisted IP, and all the emails it send either go to spam box or doesn't deliver at all. As one of my services, is deploy a web application and most of the time sending email from my staging server is completely fine, but not in the client hosting server.So because i'm checking it over and over, in my free time i create a simple script to send email from the server. If you are … Read more...

Send Bulk Email With PHP

With mail() function in PHP you can send email from your system to any email address easily. If you using a Linux system, you don't have to set anything to use mail() function. But in Windows you need to add extra line in php.ini to specify your SMTP settings.See the code below:But sending bulk emails using PHP mail() function, often consider spamming. As PHP mail() will send all the email at once during the iterations. The code is something like this:That method above will … Read more...