├── C# source files ├── icon.ico ├── packages.config ├── App.config ├── App.xaml ├── App.xaml.cs ├── LoginConfirmedPopup.xaml ├── EmailIsSentPopup.xaml ├── ErrorPopup.xaml ├── ErrorPopup.xaml.cs ├── LoginConfirmedPopup.xaml.cs ├── C-Mail 2.0.sln ├── EmailIsSentPopup.xaml.cs ├── EncryptionPasswordPopup.xaml ├── AddAttachmentPopup.xaml.cs ├── AddAttachmentPopup.xaml ├── InboxWindow.xaml ├── LoginPopup.xaml ├── EncryptionPasswordPopup.xaml.cs ├── MainWindow.xaml ├── LoginPopup.xaml.cs ├── MainWindow.xaml.cs ├── EncryptionClass.cs ├── InboxWindow.xaml.cs ├── C-Mail 2.0.csproj └── Program.cs ├── README.md ├── LICENSE └── Error Codes.txt /C# source files/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-rtijn/C-Mail/HEAD/C# source files/icon.ico -------------------------------------------------------------------------------- /C# source files/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /C# source files/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C# source files/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /C# source files/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace C_Mail_2._0 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | C-Mail 2 | ====== 3 | 4 | An email client in C# using WPF 5 | 6 | Usage 7 | ===== 8 | 9 | Before doing anything, be sure to log in. To send an email, click on "Send email" and fill in the recipient's address, subject and the body of the email. If you want you can also add an attachment and CC. 10 | 11 | To receive email, click "Refresh", this will show the last email you have received. 12 | 13 | List of supported hosts 14 | ======================= 15 | 16 | - Gmail 17 | - Yahoo mail 18 | - Hotmail (.com and .nl) 19 | -------------------------------------------------------------------------------- /C# source files/LoginConfirmedPopup.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 |