PDA

View Full Version : permissions?



next
03-20-2008, 10:38 PM
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

next
03-21-2008, 03:09 PM
thanks.