The following will return the email address for the default mail account:
Dim olook As Outlook.Application
Dim bStarted As Boolean
On Error Resume Next
Set olook = GetObject(, "Outlook.Application")
If Err <> 0 Then
Set olook = CreateObject("Outlook.Application")
bStarted = True
End If
MsgBox olook.Session.CurrentUser.Address
' Close Outlook if it was started by this macro.
If bStarted Then
oOutlookApp.Quit
End If

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Is there a way to find the mail adress(es) of the current user?
>
> /BosseH
Bo Hansson - 19 Feb 2006 17:51 GMT
Many thanks!
/BosseH
> The following will return the email address for the default mail account:
>
[quoted text clipped - 22 lines]
>>
>> /BosseH