Flag an E-Mail as done via vba - completion date missing
Hello there,
whenever I manually check off an e-mail as done, there is a completion date showing.
But when I do it via Excel-VBA (see my code snippet below), there won't be any date of completion.
Am I missing something? I already tried to add .TaskCompletedDate = Date but that won't change anything.
Thank you
Regards
elmarvo
Code:
Sub MainSub()CheckMail olMail, olFlagComplete, False
End Sub
Private Sub CheckMail(Mail As MailItem, Status As String, IsRead As Boolean, Optional Icon As String)
With Mail
.FlagStatus = Status
If Not Icon = vbNullString Then .FlagIcon = Icon
.UnRead = IsRead
.Save
End With
End Sub