![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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 |
#2
|
|||
|
|||
![]()
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 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "A Don" wrote in message ... 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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Read Receipt Button | Jim | Outlook - General Queries | 1 | July 8th 06 09:19 AM |
Getting a delivery and read receipt. | Aker Universitetssykehus | Outlook - Calandaring | 0 | June 22nd 06 12:04 PM |
verify that an email was read without using a receipt | RCNellis | Outlook - General Queries | 1 | May 12th 06 05:02 PM |
Read Receipt | jeffatsc | Outlook - Installation | 0 | March 28th 06 06:03 PM |
Sending a read receipt | Fishmanboy | Outlook - General Queries | 4 | March 13th 06 05:03 PM |