-
I thought I would try anyquery to help me get to inbox zero. I can query and those stubborn 100 emails I have in my inbox and returns everything except the body of each email. This the column data that is included - just missing the email body!
Is it possible to also have the content included as a column? I'm on a mac using zsh shell and this query works for me to get all my emails I send to myself to read later but rarely do
Maybe...I might need to make another sql query with the uid to get the body from a different table?! So close... I get a nice json result set... just missing the body |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @headwinds, I'll look into it this weekend. In the meantime, check the Nylas plugin; it allows you to fetch the body of emails. However, it's very slow (5 seconds per 20 emails). |
Beta Was this translation helpful? Give feedback.
-
Hey @headwinds, I've updated the anyquery registry refresh
anyquery plugin update imap Example of a query: -- List all emails containing a specific word in the body
SELECT * FROM imap_emails_body WHERE body LIKE '%meeting with John%'; |
Beta Was this translation helpful? Give feedback.
Hey @headwinds, I've updated the
imap
plugin. You can now query emails body using theimap_emails_body
table.To install the update, run:
Example of a query: