Does anyone know of a script to download email from Gmail and store it to a SQL server? (for backup purposes)
I am looking for a .NET solution (C#).
.netc++emailgmail
Does anyone know of a script to download email from Gmail and store it to a SQL server? (for backup purposes)
I am looking for a .NET solution (C#).
Best Solution
It would be pretty easy to write one yourself. Just connect via IMAP of Pop3 (there's .NET libraries for that already) then download the emails, and stick them in your database. A program like that would take an hour to write, tops, unless you require more features.