What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Get e-mail adress of contact

Get e-mail adress of contact
Author: Message:
deAd
Scripting Contest Winner
*****

Avatar

Posts: 1060
Reputation: 28
– / Male / Flag
Joined: Jan 2006
RE: Get e-mail adress of contact
This code is straight from the documentation. It'll loop through all the contacts and trace their emails to the debug window:

code:
Debug.Trace("Contacts in the user's contact list:");
var Contacts = Messenger.MyContacts;
var e = new Enumerator(Contacts);
for(; !e.atEnd(); e.moveNext())
{
    var Contact = e.item();
    Debug.Trace(" " + Contact.Email);
}
11-29-2006 04:25 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Get e-mail adress of contact - by albert on 11-29-2006 at 04:21 AM
RE: Get e-mail adress of contact - by deAd on 11-29-2006 at 04:25 AM
RE: Get e-mail adress of contact - by zach on 11-29-2006 at 04:41 AM
RE: RE: Get e-mail adress of contact - by deAd on 11-29-2006 at 05:00 AM
RE: Get e-mail adress of contact - by Felu on 11-29-2006 at 05:00 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On