Hi Michelle,
If it's your server then use the ".ReceivedTime" property of the mailitem object. That's the time on which you received it. Just try it out.
You ask me how to get the ".SentOn" property of the mailitem object. That's kinda strange to me. You've been programming for a longer time now in Outlook.
Haven't you worked on email items (MailItem) before in Outlook?
The MailItem object has to many properties to start explaining but
this code will give you some:[VBA]
Sub GetMailProps()
Dim myMail As Outlook.MailItem
For Each myMail In Application.ActiveExplorer.Selection
MsgBox "Mail was sent on: " & myMail.SentOn & vbCr & _
"by: " & myMail.SenderName & vbCr & _
"message was received at: " & myMail.ReceivedTime
Next
Set myMail = Nothing
End Sub
[/VBA]
Just select some Mailitems in your Inbox and run the sub.
Enjoy!
