Package ecks.Threads

Examples of ecks.Threads.EmailThread


    public static boolean sanitize(String input) { // verify string is good for the database
        return !input.contains("\"") && !input.contains("\'") && input.matches("(\\w+)*");
    }

    public static void SendRegMail(String to, String code) {
        startThread(new Thread(new EmailThread(to, code))).start();
    }
View Full Code Here

TOP

Related Classes of ecks.Threads.EmailThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.