I wish to download all emails and put it within a .txt file. Then I want to send selected emails to selected people using any keywords in the email

Make yourself familiar with SQL...
See this tutorial

And the query language documentation Query Language Reference (Version 0.7)  |  Charts  |  Google for Developers

Try this query (assiming there are only 2 columns A and B, for more columns add more OR statements):

SELECT * WHERE A CONTAINS '"UNIQUE ID OF JACK" OR B CONTAINS "UNIQUE ID OF JACK"

Taifun

1 Like