Checking who sent msg

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

How can i check who sent me an email in outlook. I have
tried the item.sender but his is not working.

Thanks
 
Hi

When i use the following line it kicks up an error saying
'Object doesnt support this property or method'

If Item.Sender = "(e-mail address removed)" Then
 
The error message is correct. There is no property named Sender. When in
doubt, check the object browser: Press ALt+F11 to open the VBA environment
in Outlook, then press F2. You'll find that there is a SenderName property.
 
Back
Top