Sub ReplyMSG()
Dim olItem As Outlook.MailItem
Dim olReply As MailItem ' Reply
For Each olItem In Application.ActiveExplorer.Selection
Set olReply = olItem.ReplyAll
CopyAttachments olItem, olReply
olReply.HTMLBody = "Hi,please follow up"
olReply.Display
'olReply.Send
Next olItem
End Sub
Hi there,
How do I flag the send item with a category and items with a flag,
and unflag the inbox item.
IF and only IF the item is sent?