Returns email threads from the user's inbox.
class GmailApp method .getInboxThreads()
GmailApp is the Apps Script service.
.getInboxThreads() is the method name you will see after a dot in your code.
What it does
Why it's used
- Process recent inbox threads for support or lead triage.
- Archive or label threads in bulk from a sheet-driven workflow.
Common errors
- Forgetting parentheses on getInboxThreads. Write GmailApp.getInboxThreads(), not GmailApp.getInboxThreads or getInboxThreads by itself.
- Skipping dots between chained calls. Each step needs a dot, like GmailApp.search('label:inbox').getInboxThreads().
- Adding spaces where they do not belong. Write GmailApp.getInboxThreads(), not GmailApp .getInboxThreads(), GmailApp.getInboxThreads (), or GmailApp . getInboxThreads().
- Wrong capitalization. Use GmailApp and getInboxThreads, not gmailapp or getinboxthreads.
Explore
Related methods
-
.getThreadById()
Loads an email thread by its ID.
-
.search()
Finds Gmail threads that match a search query.
-
.sendEmail()
Sends an email from the user's Gmail account.
-
.getMessageById()
Loads a single email message by its ID.
-
.getAliases()
Returns the email addresses the user can send from.
More Apps Script
Better Sheets tutorials
No tagged tutorials yet. Fetch Apps Script from the harvest table and this page fills automatically.
Related blog posts
Written guides about GmailApp.getInboxThreads().
Automated Project Management in Google Sheets
When you have multiple people working on multiple tasks, and you want everyone to be on the page, what do you do? You can use a Google Sheet. But managing projects can be an intimidating task in Google Sheets. It's a lot of data entry, right? Especially when you have multiple people working on different tasks with different statuses across different projects. Data entry for multiple projects, with different people, tasks, and statuses – it gets messy fast! I'm no stranger to these issues...
Read post →Email Yourself a Cell from a Google Sheet, Every Day
I'll show you how to email yourself one single cell data. That's one sheet, one cell, one email every single day.
Read post →Simply Email Yourself From a Google Sheet
I wanted to share with you one of the simplest apps scripts that has immense power. Email! You can email others, but you can also email yourself.
Read post →