Posts

Showing posts from January, 2018

Send List Emails With Time Trigger Google Sheets

Image
There's many requests and questions about how to send bulk emails with good way to control how to send that data in specific time interval with Google Sheets and Google Apps Script, this tutorial will help you to achieve that.  How to use : In Spreadsheet Menu Click Tools and select Script Editor from spinner to go put your script, in Excel "Visual Basic" on developer mode. Open Google Apps Script file or create new one : File > New > Script File and name it with whatever you want . 1- Past the script in the bottom of Article and Save the Script. 2- Save the script. Click that button to save setup the trigger In that sample i make time trigger to run function sendEmails every hour ! What you need to change : Line 6: Sheet name is Emails on default you change it according to your sheet name Line 18: if status is not ready then skip that Email, if you want to avoid that type // in the start of the line. Line 21: Avoi

Export and Email Specific Range in Google Sheets in CSV,PDF or XLSX

Image
Script for Exporting a specific Range from spreadsheet and save it in drive or email it in attachment in CSV, PDF or XLSX . If you want to export just specific sheets in the spreadsheet just check this  Tutorial  . How to use it : In Spreadsheet Menu Click Tools and select Script Editor from spinner to go put your script, in Excel "Visual Basic" on developer mode. 1- Open Google Apps Script file or create new one : File > New > Script File and name it with whatever you want . 2- Past the script in the bottom of Article and Save the Script . What necessary to change : Line 5 : Range you want to export it. Line 6: Sheet who has that range . LINE 59 : Email Receiver, if you want to email a multiple emails just make comma between each email address e.g : 'pace3man@gmail.com ,spider-max@live.fr,......'  . LINE 60 : replace Title word with whatever. LINE 61 : The body of Email. LINE 64 : The Attachment file name.