View Full Version : permissions?
I once received an email from a company that we do business with and it had some maybe permissions applied to it, when i tried to forward it original message wasn't included like usully, when i tried to copy email text, i couldn't
do it either. How do i set such protection to my sent items?
Charlize
03-21-2008, 12:13 AM
From the helpfiles of outlook 2003.Public WithEvents myItem As Outlook.MailItem
Sub SendMyMail()
Set myItem = Outlook.CreateItem(olMailItem)
myItem.To = "Dan Wilson"
myItem.Subject = "Data files information"
myItem.Send
End Sub
Private Sub myItem_Send(Cancel As Boolean)
myItem.Permission = olDoNotForward
End SubThis means that every mail you sent, can not be forwarded.
Charlize
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.