Requesting a Read Receipt in vbScript

G

Guest

Hi Folks,

Does anyone have any idea how I would add a read receipt using vbScript.
(Outlook 2003?)

Long story but I have basically designed a form which is sent to the
recipient in the body of the email.

The code I have is as follows for the conversion of the form

Sub SimpleText()
Dim oForm, strBody
Set oForm = Application.CreateItem(0)
oForm.To = sTo ' sTo is a text box disguised as the TO field
oForm.Subject = Subject


strBody = "DETAILS:" & vbCrLf & vbCrLf & _

' message body is input here>>



oForm.Body = strBody

oForm.Send
Set oForm = Nothing
End Sub

Ther e is further code which fires the SUb Simpletext once validation has
been caried out.

Any help would be much appreciated

Thanks
 
S

Sue Mosher [MVP-Outlook]

When in doubt, check the object browser: Press ALt+F11 to open the VBA environment in Outlook, then press F2. Switch from <All Libraries> to Outlook to browse all Outlook objects and their properties, methods, and events. Select any object or member, then press F1 to see its Help topic.

You'll find the property you're looking for under the MailItem object.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 

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