Google AppScript: Send Multiple Emails by reading data from Spreadsheet

This article shows how to read list of email addresses, subject and message body from Google Spreadsheet and send separate emails to all of them with Google AppScript. First, let’s see a simple example of sending single message to a particular email address. Send Single Email Here, AppScript’s MailApp class is used to send email. … Read more

PHP: Easily send email with PHPMailer

PHPMailer is a PHP class for PHP that provides a package of functions to send email. It is an efficient way to send e-mail within PHP. The following are some features of PHPMailer:- – Sending HTML email – Sending email with attachments – Sending email to multiple recepients via to, CC, BCC, etc – Supports … Read more

Magento: Send Transactional Email

In Magento, Transactional Email Templates can be created from System -> Transactional Emails. This article shows how we can send transactional emails programmatically. There are few necessary things for any transactional email in Magento. They are:- Template ID = ID of your transactional email template Sender Name Sender Email Recepient Name Recepient Email Store ID … Read more

Magento: Send email easily using Zend_Mail

Here is a quick function code to send email in Magento. I am using the Zend_Mail class. /** * Send email */ public function sendEmail() { $fromEmail = "from@example.com"; // sender email address $fromName = "John Doe"; // sender name $toEmail = "to@example.com"; // recipient email address $toName = "Mark Doe"; // recipient name $body … Read more

Gmail Trick: Use multiple email addresses for your single Gmail account

You can use multiple email addresses with your single Gmail account. Trick #1 Suppose, you have your Gmail account as: firstname.lastname@gmail.com With Gmail, you can also use it as: firstnamelastname@gmail.com or first.name.lastname@gmail.com or first.name.last.name@gmail.com Gmail doesn’t recognize dots as characters within usernames. Email sent to all of these email addresses will go to your original … Read more