I want to request email messages stored in Thunderbird from the C # application that I am developing.
Currently, I can get some parts of messages, such as From address and Subject, by querying the SQLite database, global-messages-db.sqlite.
SELECT subject FROM messagesText LIMIT 10;
I could not find the message body. I was looking for documentation on the Thunderbird repository, but I can not find anything that describes where this is stored.
Where are message bodies stored?
source
share