Prev: PivotCharts, time-series
Next: Storing user preferences
From: jbguernsey on 28 May 2010 10:51 I've been trying to find a way to check whether emails (sent via Outlook) have a Read Receipt - and getting nowhere. A 2003 and Outlook 2003. Please is anyone able to give me a start? Thanks. Jeff B
From: paii, Ron on 28 May 2010 13:31 If your looking to sent email though Outlook from Access, I use the following function. Note I set ReadReceiptRequested = True If checking Outlook; try temporally setting a reference to Outlook and stat poking around. also try searching for info on CreateObject. "MAPI", Outlook.Application, ect. '--------------------- ' Create a email with attachments ' stSendTo Email address ' stBody Body of the message ' stSubject Subject of the message ' astAttach Array of strings listing the path to the attachments ' intAcount Number of attachments ' intSend True if the message should be sent without preview Public Function EmailAttach(ByRef stSendTo As String, ByRef stBody As String, ByRef stSubject As String, _ astAttach() As String, intAcount As Integer, intSend As Integer) As Integer On Error GoTo errEmailAttach Dim oLook As Object Dim oMail As Object Dim i As Integer Set oLook = CreateObject("Outlook.Application") Set oMail = oLook.CreateItem(0) With oMail .To = stSendTo .Body = stBody .Subject = stSubject .ReadReceiptRequested = True If intAcount <> 0 Then For i = 1 To intAcount .Attachments.Add (astAttach(i - 1)) Next End If If intSend = True Then .Send Else .Display End If End With Set oMail = Nothing Set oLook = Nothing EmailAttach = True Exit Function errEmailAttach: MsgBox "The following error was noted : " & Err.Description & Chr$(10) & Chr$(13) & _ "Your email may not have been sent.", vbCritical, "Error" On Error Resume Next Set oMail = Nothing Set oLook = Nothing Pai1_emailAttach = False End Function "jbguernsey" <jeff(a)angelsystems.co.uk> wrote in message news:e1df14f2-5175-45f1-ab74-eb5b61fe4af9(a)o39g2000vbd.googlegroups.com... > I've been trying to find a way to check whether emails (sent via > Outlook) have a Read Receipt - and getting nowhere. > > A 2003 and Outlook 2003. > > Please is anyone able to give me a start? > > Thanks. > > Jeff B
From: Salad on 28 May 2010 13:34 jbguernsey wrote: > I've been trying to find a way to check whether emails (sent via > Outlook) have a Read Receipt - and getting nowhere. > > A 2003 and Outlook 2003. > > Please is anyone able to give me a start? > > Thanks. > > Jeff B http://www.devnewsgroups.net/officedev/t5244-reading-read-receipts-outlook.aspx You might also ask in microsoft.public.outlook or similar group.
From: jbguernsey on 31 May 2010 14:39 On May 28, 6:34 pm, Salad <sa...(a)oilandvinegar.com> wrote: > jbguernsey wrote: > > I've been trying to find a way to check whether emails (sent via > > Outlook) have a Read Receipt - and getting nowhere. > > > A 2003 and Outlook 2003. > > > Please is anyone able to give me a start? > > > Thanks. > > > Jeff B > > http://www.devnewsgroups.net/officedev/t5244-reading-read-receipts-ou... > > You might also ask in microsoft.public.outlook or similar group. Thanks Salad. I'll have a go with the stuff you sent me. Thank you Ron for your reply. Unfortunately I'm trying to discover the status of the Readreceipt in existing (sent) emails, not trying to send them (that's already been done). Jeff B.
|
Pages: 1 Prev: PivotCharts, time-series Next: Storing user preferences |