RegNow is ok. But to sell software with 0.8 - 3% conversation rate is not.
17 Mar
Gmail offers a rich search syntax for routing through your email message archiveas if you’d expect, or indeed stand for, any less:
Digs through the headers of your email message archive in search of mail sent by someone matching the keyword you provide:
from:rael@oreilly.com
The yang to from:’s yin, to: finds all messages sent to someone matching a provided keyword. (Don’t forget plus-addressing [Hack #70].)
to:engineers@example.com to:raelity+shopping@gmail.com
Matches messages with a particular subject:
subject:"meeting notes"
Looks for messages with a particular label applied:
label:knitting
The has: syntax has only one possible value (at least at the time of this writing): attachment. has:attachment in a query returns only messages having one or more attachments:
has:attachment
Finds messages with an attachment filename that matches a provided pattern. Used with just a file extension (e.g., pdf or txt), filename: turns up all messages with attachments of a particular type:
filename:meeting_notes.txt filename:pdf
Returns a list of messages in a particular collection (read: folder). Acceptable values for in: are inbox, trash, spam, and anywhere (trash and spam are not included in searches unless they are explicitly included using in:trash, in:spam, or in:anywhere). Oddly enough, sent isn’t a usable value for in:.
in:inbox in:anywhere
Acceptable values for is: are starred, unread, and read, which return starred, unread, and read messages, respectively:
is:read
Finds messages carbon copied to particular recipients:
cc:tara@example.com
Finds outgoing messages blind carbon copied to particular recipients. Note that bcc: doesn’t work on any incoming mail because there’s no way to tell who’s on the bcc line:
bcc:tara@example.com
Matches messages sent or received before a particular date, specified in yyyy / mm / dd format. Unfortunately, partial datesyear only or year and monthdon’t find anything at all:
before:2004/10/02
Matches messages sent or received on or after a particular date, specified in yyyy / mm / dd format:
after:2004/11/21
Enclose phrases in double-quotes (“) to have the Gmail search treat them as a unit to be matched exactly (case isn’t taken into account). The following query finds only accounting department reports:
Subject:"accounting department report"
The only Boolean operator supported by Gmail search is OR (uppercase is required). In the absence of the OR operator, AND is implicit.
The Boolean OR operator works in Gmail searches just as it does in Google Web Search: specify that any one word or phrase is acceptable by putting an OR between each, such as in this query, which finds all messages from the boss or messages with subjects marked as urgent:
from:boss@example.com OR subject:urgent
The negation operator () also works as it does in Google Web Search, excluding messages matching the negated keyword or operator : keyword pair. So the following query turns up all messages to Example Co. not sent from the company’s special offers department:
to:@examplecom -from:offers@
Parentheses are used a little strangely in Gmail queries. When enclosing a set of words, they specify that each word must be found to be considered a match. So the following matches messages sent to both Sam and Mira:
to:(sam mira)
Throwing in an OR allows optional matches while being explicit about groups of options; while we humans tend to be able to parse precedence without the need of parentheses, search engines require a little more help. The following query finds all messages sent to Sam about rockets or helicopters:
to:sam subject:(rockets OR helicopters)
Gmail’s various search operators tend to play well together. While the tendency is to start out with minimal search criteria and keep whittling down, with a large number of email messages, crafting your searches can result in a lot of work. Take a chance and provide as much information as you can about the message you’re after and back off bit by bit if you don’t find it. The following query, for instance, is one that I just couldn’t pull off in my computer’s email client:
from:Duncan before:2004/10/01 subject:today "World Cup" lunch


Leave a reply