├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Setup ├── Setup.vdproj └── yahoo + gmail.rar ├── reporting.sln └── reporting ├── App.config ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Settings.cs ├── app.manifest ├── data ├── gmail.cs ├── hotmail.cs ├── logger.cs ├── mysql.cs └── yahoo.cs ├── icon.ico ├── packages.config ├── report.Designer.cs ├── report.cs ├── report.resx ├── reporting.csproj ├── save_emails.Designer.cs ├── save_emails.cs └── save_emails.resx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/Setup/Setup.vdproj -------------------------------------------------------------------------------- /Setup/yahoo + gmail.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/Setup/yahoo + gmail.rar -------------------------------------------------------------------------------- /reporting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting.sln -------------------------------------------------------------------------------- /reporting/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/App.config -------------------------------------------------------------------------------- /reporting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/Program.cs -------------------------------------------------------------------------------- /reporting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /reporting/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /reporting/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/Properties/Resources.resx -------------------------------------------------------------------------------- /reporting/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /reporting/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/Properties/Settings.settings -------------------------------------------------------------------------------- /reporting/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/Settings.cs -------------------------------------------------------------------------------- /reporting/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/app.manifest -------------------------------------------------------------------------------- /reporting/data/gmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/data/gmail.cs -------------------------------------------------------------------------------- /reporting/data/hotmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/data/hotmail.cs -------------------------------------------------------------------------------- /reporting/data/logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/data/logger.cs -------------------------------------------------------------------------------- /reporting/data/mysql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/data/mysql.cs -------------------------------------------------------------------------------- /reporting/data/yahoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/data/yahoo.cs -------------------------------------------------------------------------------- /reporting/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/icon.ico -------------------------------------------------------------------------------- /reporting/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/packages.config -------------------------------------------------------------------------------- /reporting/report.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/report.Designer.cs -------------------------------------------------------------------------------- /reporting/report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/report.cs -------------------------------------------------------------------------------- /reporting/report.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/report.resx -------------------------------------------------------------------------------- /reporting/reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/reporting.csproj -------------------------------------------------------------------------------- /reporting/save_emails.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/save_emails.Designer.cs -------------------------------------------------------------------------------- /reporting/save_emails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/save_emails.cs -------------------------------------------------------------------------------- /reporting/save_emails.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emailing-solution/reporting/HEAD/reporting/save_emails.resx --------------------------------------------------------------------------------