{% extends "base.html" %} {% block title %}Search help - {{ brand_name }}{% endblock %} {% block content %}

Search syntax

Field filters

from:user@example.comEmails from this address
from:aliceEmails from sender named "alice"
to:user@example.comEmails to this address
subject:meetingEmails with "meeting" in subject
attachment:pdfEmails with PDF attachments
has:attachmentEmails with any attachments
label:INBOXEmails with specific Gmail label

Date filters

after:2024-01-15Emails on or after this date
before:2024-06-01Emails before this date
after:2024-01-01 before:2024-02-01Emails in January 2024

Boolean operators

apple orangeBoth words (implicit AND)
apple OR orangeEither word
-orangeExclude emails containing "orange"
-"exact phrase"Exclude exact phrase

Negated filters

-from:user@example.comExclude emails from this sender
-label:promotionsExclude emails with this label
-attachment:exeExclude emails with .exe attachments
-has:attachmentEmails without attachments

Phrases & grouping

"hello world"Exact phrase
(apple OR orange) juiceGrouping with parentheses

Prefix matching

meet*Words starting with "meet" (meeting, meets, etc.)

Examples

from:amazon invoiceInvoices from Amazon
subject:urgent after:2024-01-01Urgent emails this year
attachment:pdf report OR invoicePDFs with report or invoice
label:IMPORTANT from:boss@work.comImportant emails from boss
meeting -from:spam@spam.comMeeting emails, excluding spam sender
{% endblock %}