YMClient Java Client for YouMail.com

What Is It?

This is an open source client for the YouMail Public API written in Java. It provides a convenient way to access your account information at YouMail using Java.

Quick Links

Download File(s)

SourceForge Summary Page & Forums

Getting It To Work

In order to use ymclient.jar you will need the following additional libraries which are dependencies:

Example Code

        
            // create a client and then a session with phone number and pin
            YouMailClient client = new YouMailClient();
            YouMailSession session = client.login( "4155551234", "1234" );
            
            List msgs = session.getAllInboxMessages();
            System.out.println( msgs.size() + " messages in the inbox" );
            
            for (VoicemailMessage m : msgs)
            {
                // print out details of the message
                System.out.println(m);
            }
        


Getting Help

Visit the SourceForge.net page for help or to contribute.