Hi darbid, I am trying to save emails to an access database. I see you have given the following advice (I would suggest that you then get the ID number of this DB record and add this ID to the "mileage" field of the email item. Then you will always be able to find this email in outlook again (unless it is deleted) ), and have decided that this is the way to go but can't figure out how you put the ID into the mileage field. This is the code i tried:
With TempRst
On Error Resume Next
.AddNew
!Subject = Mailobject.Subject
!From = Mailobject.SenderName
!To = Mailobject.To
!BOdy = Mailobject.BOdy
!DateSent = Mailobject.SentOn
.Update
Mailobject.Mileage = TempRst("Id")
'Mailobject.Read = True
End With