PHP Bulk Emailer

If you send email to 5,000 people using standard PHP tools, your ISPs might be blocked in seconds. I think you already read below articles… Amazon Simple Notification Service Command Lines Theory About Bulk Emails Emails are not working on server? Amazon SES – Emails In Cloud Open source – Port25 Linux Mail Servers Email’s … Read more

Emails are not working on server?

Emails are essential tool / facility on web server to manage all communications among users. Here are few issues: 1. Send mail function is not configured 2. No responsible mail server service on web server 3. Email port blocked 4. SMTP service 5. IP blacklist How to fix: 1. Check Mail server (sendmail or postfix) … Read more

Theory About Bulk Emails

Electronic mail (e-mail), is a method of exchanging digital messages from an author to one or more recipients. Modern email operates across the Internet or other computer networks. An email message consists of three components, the message envelope, the message header, and the message body. The message header contains control information, including, minimally, an originator’s … Read more

Open source – Port25

If you have trouble getting the PHP’s mail() function to work on your server. If the function returned true, but never send the emails to target account. Some ISP’s block port 25 (mail port), so you can’t send directly but you can send indirectly using your ISP’s mail server. 😉 Many email providers keep lists … Read more