Simple mail client
UPDATE : Just changed colors. Blue screen fetish is not working anymore :D I have a blue-screen fetish. Yes, since old QBasic IDE. So I like it, and I find it appropriate for this kind of a...low-level functionality software. When, and if, this app should grow, with it's usability, so will its' GUI :) It can read newest mail ( text ) and send one. I've used Task just for a sake of ProgressIndicator. bebicamc02.BebicaMC02.java 1: /* 2: * Bebica Mail Client 3: * ver 0.2 4: */ 5: package bebicamc02; 6: 7: import java.io.IOException; 8: import java.net.URL; 9: import java.util.Properties; 10: import javafx.application.Application; 11: import javafx.concurrent.Task; 12: import javafx.fxml.FXML; 13: import javafx.fxml.FXMLLoader; 14: import javafx.scene.Scene; 15: import javafx.scene.control.*; 16: import javafx.scene.layout.AnchorPane; 17: import javafx.stage.Stage; 18: import javax.mail.*; 19: import javax.m...