{% extends "base.html" %} {% block title %}Search help - {{ brand_name }}{% endblock %} {% block content %}
from:user@example.com | Emails from this address |
from:alice | Emails from sender named "alice" |
to:user@example.com | Emails to this address |
subject:meeting | Emails with "meeting" in subject |
attachment:pdf | Emails with PDF attachments |
has:attachment | Emails with any attachments |
label:INBOX | Emails with specific Gmail label |
after:2024-01-15 | Emails on or after this date |
before:2024-06-01 | Emails before this date |
after:2024-01-01 before:2024-02-01 | Emails in January 2024 |
apple orange | Both words (implicit AND) |
apple OR orange | Either word |
-orange | Exclude emails containing "orange" |
-"exact phrase" | Exclude exact phrase |
-from:user@example.com | Exclude emails from this sender |
-label:promotions | Exclude emails with this label |
-attachment:exe | Exclude emails with .exe attachments |
-has:attachment | Emails without attachments |
"hello world" | Exact phrase |
(apple OR orange) juice | Grouping with parentheses |
meet* | Words starting with "meet" (meeting, meets, etc.) |
from:amazon invoice | Invoices from Amazon |
subject:urgent after:2024-01-01 | Urgent emails this year |
attachment:pdf report OR invoice | PDFs with report or invoice |
label:IMPORTANT from:boss@work.com | Important emails from boss |
meeting -from:spam@spam.com | Meeting emails, excluding spam sender |