A
A Don
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
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