The Palos Publishing Company

Follow Us On The X Platform @PalosPublishing
Categories We Write About

Convert unread emails into reminders

Converting unread emails into reminders can help you stay organized and ensure no important messages slip through the cracks. Here’s a simple approach depending on the tools you’re using:


1. Using Gmail with Google Tasks (Manual Method)

Steps:

  1. Open Gmail.

  2. Click the checkbox next to the unread email.

  3. Click the “More” (three-dot icon) and select “Add to Tasks”.

  4. This creates a Google Task with a link back to the email.

  5. Open Google Tasks (side panel), set a due date and time.


2. Automate with Google Workspace (via Google Scripts)

Use a Google Apps Script to automatically convert unread emails to Google Tasks.

Example Script:

javascript
function createTasksFromUnreadEmails() { var threads = GmailApp.search('is:unread'); for (var i = 0; i < threads.length; i++) { var message = threads[i].getMessages()[0]; var subject = message.getSubject(); var link = "https://mail.google.com/mail/u/0/#inbox/" + threads[i].getId(); Tasks.Tasks.insert({ title: subject, notes: "Email: " + link, due: new Date(new Date().getTime() + 24*60*60*1000).toISOString() // due tomorrow }, '@default'); } }

To use:


3. Microsoft Outlook (Manual Method)

Steps:

  1. Right-click an unread email.

  2. Choose “Follow Up”“Add Reminder”.

  3. Set date/time and click OK.


4. Using Third-Party Apps

Todoist

  • Use the Gmail or Outlook plugin.

  • Add emails to Todoist as tasks with one click.

  • Schedule reminders within the app.

Trello or Notion

  • Use browser extensions to save emails to Trello/Notion.

  • Add due dates or tags as reminders.


5. iOS/Android Email Apps

Apps like Spark, Superhuman, or Edison Mail offer:

  • Snooze emails for later.

  • Remind me options for unread emails.

  • Integration with calendar/reminder apps.


6. Zapier or Make (Integromat) Automation

Set up automation like:

  • Trigger: Unread email in Gmail

  • Action: Create reminder in Google Calendar, Todoist, or any reminder app

Example on Zapier:

  • Gmail → New Unread Email → Google Calendar → Create Event


This method ensures you don’t miss tasks hidden inside emails while maintaining control over your time and follow-ups.

Share this Page your favorite way: Click any app below to share.

Enter your email below to join The Palos Publishing Company Email List

We respect your email privacy

Categories We Write About