
Net::Msmgr::User

use Net::Msmgr::User;
my $user = Net::Msmgr::User->new(user => 'joeblow@msn.com',
password => 'password' );
print "Username is: ", $user->user;

Net::Msmgr::User is the encapsulation object for a user/password pair.

my $user = new Net::Msmgr::User ( user => ... ); - or - my $user = Net::Msmgr::User->new(user => .... ); Constructor parameters are:
Registered MSN email address.
Your password. This is never sent "in the clear"

Returns the MD5 hex digest of the salt, which is assigned during the login authentication process and the user password.