Outlook Message body to read only

J

jeffcravener

I have the followibg code

Function Item_ReplyAll(ByVal Response
Dim MyFolde
Dim MyIte

if optApproved.Value = false AND optSomeDenied.Value = false AN
optDenied.Value = false the
msgbox "You have not approved or denied anything.
Item_ReplyAll = fals
exit functio
end i

Item_ReplyAll = Fals

Set MyFolder
Application.GetNameSpace("MAPI").GetDefaultFolder(6
Set MyItem = MyFolder.Items.Add("IPM.Note"

MyItem.To = Item.To & ";" & Item.C
MyItem.Subject = NewSubjec

if txtResponse = "" the
MyItem.Body = Item.Bod
else
MyItem.Body = "NOTES:" & vbcrlf & txtRespons
& vbcrlf & vbcrlf & "EXCEPTIONS REQUESTED:
& vbcrlf & Item.Bod
end i

MyItem.Body_ReadOnly = tru
MyItem.Displa
End Functio


I want to make the 'reply' message that the code creates to be rea
only...can't figure it out...help :

Thanks in advance
 
S

Sue Mosher [MVP-Outlook]

You can't make a simple message read-only. Recipients can do whatever they
want with it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top