Skip to main content

Gmail Scheduled Send Email

Someone recently asked for the ability to schedule send an email. It was for a link to a class feedback form and ideally they'd like to be able to send it near the end of the class.

We looked at Boomerang, which had issues with authenticating with the York domain, and broke the CSS of Gmail slightly. We tried mx Hero, a Chrome app but after a tip off from a colleague and reading the reviews and discovering it at times didn't send the email, or used http rather than https etc we thought it might be better to look into making our own solution.

Apps Script to the rescue!

I wanted something that was really simple, and easily editable to do what you want.

I made an Apps Script to check your Gmail Drafts folder. If there's a message whose subject begins with a date, like this, it sends it ...

[27/06/2014] Hello, this is a message from the future!


How to install it...

1. Go to the Apps Script here and choose the menu, File > Make a Copy. You will want to change the admin_email to your email address (line 32) so that you get a BCC copy of any mail sent out. I have set the emails to come from noReply. You can also change that in line 82.

2. Now, to authorise the script to run, click the Run button and then click OK. This is Google making sure you want this code to be able to be run.



3. From the menu Resources > "Current project's triggers" and create a Trigger that will run the check_drafts() function every 5 minutes or so.  See below....






4. Now you are ready to go. All you now need to do is create draft emails that have title with a date EXACTLY in the format above... All you then have to do is close the email... and wait. It might not send at exactly the time you specify, depending on how often your Trigger is set to run, but it'll be close.





Every time the script runs, it looks for messages that have a date in square brackets. It makes a copy, BCC-ing in the email you specified ( this is important because otherwise it doesn't keep a copy in your Sent folder... you need a copy to make sure it has indeed been sent ). 

The Script creates a label called "Scheduled Gmail Sent" and moves sent drafts to the bin ( unfortunately, Apps Script won't let me send the mail so it appears in the Sent tray or delete it outright ). Maybe you can work out how this bit works.

I couldn't get inline images to work, but attachments work fine.

Remember your Google Gmail quota is 500 a day, but a message with 300 people BCC'd in counts only as one message.







Comments

  1. I got here much interesting stuff. The post is great! Thanks for sharing it! Read more: How to Schedule an Email in Gmail

    ReplyDelete

Post a Comment

Popular posts from this blog

Inserting A Google Doc link into a Google Spreadsheet (UPDATED 6/12/2017)

This article looks at using Apps Script to add new features to a Google Spreadsheet. At the University of York, various people have been using Google spreadsheets to collect together various project related information. We've found that when collecting lots of different collaborative information from lots of different people that a spreadsheet can work much better than a regular Google Form. Spreadsheets can be better than Forms for data collection because: The spreadsheet data saves as you are editing. If you want to fill in half the data and come back later, your data will still be there. The data in a spreadsheet is versioned, so you can see who added what and when and undo it if necessary The commenting features are brilliant - especially the "Resolve" button in comments. One feature we needed was to be able to "attach" Google Docs to certain cells in a spreadsheet. It's easy to just paste in a URL into a spreadsheet cell, but they can often...

Writing a Simple QR Code Stock Control Spreadsheet

At Theatre, Film & TV they have lots of equipment they loan to students, cameras, microphone, tripod etc. Keeping track of what goes out and what comes back is a difficult job. I have seen a few other departments struggling with the similar "equipment inventory" problems. A solution I have prototyped uses QR codes, a Google Spreadsheet and a small web application written in Apps Script. The idea is, that each piece of equipment ( or maybe collection of items ) has a QR code on it. Using a standard and free smartphone application to read QR codes, the technician swipes the item and is shown a screen that lets them either check the item out or return it. The QR app looks like this. The spreadsheet contains a list of cameras. It has links to images and uses Google Visualisation tools to generate its QR codes. The spreadsheet looks like this. The Web Application The web application, which only checks items in or out and should be used on a phone in conjunctio...

Can You Use a Collaborative Inbox for an Enquiries Email Address?

Google Groups have added a few new flavours of group recently. As well as a regular Email List, you can now make a Web Forum, a Q&A Forum and a Collaborative Inbox - all slightly different takes on the same thing. As part of the move to Google, one of the biggest challenges are  what we call "non personal email accounts", for those accounts like chemistry-enquiries@york.ac.uk . Traditionally the handling of these accounts was done by a number of people, all sharing the log in details. In a Google-ized world, having accounts that can't be audited is "not the done thing". Our first trawl for non personal accounts found thousands of them. This included accounts for projects, conferences, departments, etc. With many of them, nobody knew who was replying ( or not ) to any enquiries. Gmail has the ability to delegate access to your account to someone else, but this still doesn't solve the  chemistry-enquiries@york.ac.uk problem . Essentially we need som...