Amazon SES – Emails In Cloud

Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers. Amazon SES eliminates the complexity and expense of building an in-house email solution or licensing, installing, and operating a third-party email service. The service integrates with other AWS services, making it easy to send … 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

Send AWS SES Email attachments using Mail_Mime and AWS SDK PHAR for PHP

AWS SES allow AWS users to send emails with attachment using PEAR Mail_Mime, it will generate / manually chunking the raw message to pass it along to the AWS SDK for PHP PHAR “aws.phar”. First you need to request Amazon Web Services Support to increase your email sending quota per day in some AWS Region. … Read more

Download Gmail Blocked Email Attachments

Anti-virus warning – 1 attachment contains a virus or blocked file. Downloading this attachment is disabled. Gmail says …. File types you can’t include as attachments .ADE, .ADP, .BAT, .CHM, .CMD, .COM, .CPL, .EXE, .HTA, .INS, .ISP, .JAR, .JS (NEW), .JSE, .LIB, .LNK, .MDE, .MSC, .MSI, .MSP, .MST, .NSH .PIF, .SCR, .SCT, .SHB, .SYS, .VB, … Read more

Mobile Apps for Safety

Mobile apps across various operating systems that can help to save our souls and keep our loved ones informed about each other. Lot of people are searching mobile applications for personal security these days, I am trying to help to find some useful Mobile Applications on Android Google Play Market. Life360 Family Locator http://www.life360.com/ Family … Read more

Amazon SES integration with Joomla

Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers. Amazon SES eliminates the complexity and expense of building an in-house email solution or licensing, installing, and operating a third-party email service. The service integrates with other AWS services, making it easy to send … Read more

MIME Types List

MIME stands for “Multipurpose Internet Mail Extensions”. It’s a way of identifying files on the Internet according to their nature and format. “Content-type” header value defined in the HTTP response, the browser can open the file with the proper extension/plugin/tool. “Internet Media Type” is the same as a MIME type. MIME types were originally created … Read more

Find Email From PHP String

Here is simple code to grab email address from any PHP string. Code is using preg_match_all with regular expression below… But I want to suggest you to use some code to hide emails from your websites else spammer will attack your inbox. <?phpfunction lower($n) { return( strtolower(str_replace(” “, “”, $n)) ); } $string = “Hello Friends, I am Sandeep Verma. My Emails are [email protected], sandeepv @svnlabs.com, svnlab @ gmail.com and svmbm@ svnlabs.com. Do you know we can use this code to get emails from a PHP String. Also code is converting emails to proper case like Sandeepv @svnlabs.com and [email protected] are same. But contact me here [email protected]”; preg_match_all(“/[_a-z0-9-]+(\.[_a-z0-9-]+)*([ ]{0,2})@[a-z0-9- ]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})/i”, $string, $matches); $lower = array_map(“lower”, $matches[0]); $result = array_unique($lower); print_r($result); ?> … Read more

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