![]() |
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 All,
Can some one please check .. what is wrong with this .. I am using it on outlook 2003 and it does not work .. ![]() ' ThisOutlookSession: Option Explicit Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) If Item.Class olMail Then Exit Sub Dim r As Recipient For Each r In Item.Recipients If StrComp(r.Address, ", vbTextCompare) = 0 Then Item.ReadReceiptRequested = True MsgBox "Requesting Read Receipt from " & r.Name End If Next End Sub |
Ads |
#2
|
|||
|
|||
![]() If one of the recipients is " then it turns ReadReceiptRequested. What do you expect? -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Quick-Cats - The most effective way to assign Outlook categories: http://www.shareit.com/product.html?...4&languageid=1 (German: http://www.VBOffice.net/product.html?pub=6) Am Thu, 12 Apr 2007 18:30:03 -0700 schrieb bhardwajrishi: Hi All, Can some one please check .. what is wrong with this .. I am using it on outlook 2003 and it does not work .. ![]() ' ThisOutlookSession: Option Explicit Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) If Item.Class olMail Then Exit Sub Dim r As Recipient For Each r In Item.Recipients If StrComp(r.Address, ", vbTextCompare) = 0 Then Item.ReadReceiptRequested = True MsgBox "Requesting Read Receipt from " & r.Name End If Next End Sub |
#3
|
|||
|
|||
![]()
It is not working for me. Id does not turn ReadReceiptRequested. I have
tested it .. ![]() "Michael Bauer [MVP - Outlook]" wrote: If one of the recipients is " then it turns ReadReceiptRequested. What do you expect? -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Quick-Cats - The most effective way to assign Outlook categories: http://www.shareit.com/product.html?...4&languageid=1 (German: http://www.VBOffice.net/product.html?pub=6) Am Thu, 12 Apr 2007 18:30:03 -0700 schrieb bhardwajrishi: Hi All, Can some one please check .. what is wrong with this .. I am using it on outlook 2003 and it does not work .. ![]() ' ThisOutlookSession: Option Explicit Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) If Item.Class olMail Then Exit Sub Dim r As Recipient For Each r In Item.Recipients If StrComp(r.Address, ", vbTextCompare) = 0 Then Item.ReadReceiptRequested = True MsgBox "Requesting Read Receipt from " & r.Name End If Next End Sub |
#4
|
|||
|
|||
![]() Please set a breakpoint (f9) on the first row and send a test mail. The code execution stops at the breakpoint and you can walk trough it step by step with f8. See what happens. do you get an error? -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Quick-Cats - Categorize Outlook data: http://www.vboffice.net/product.html...&lang=en&pub=6 Am Fri, 13 Apr 2007 14:44:00 -0700 schrieb bhardwajrishi: It is not working for me. Id does not turn ReadReceiptRequested. I have tested it .. ![]() "Michael Bauer [MVP - Outlook]" wrote: If one of the recipients is " then it turns ReadReceiptRequested. What do you expect? -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Quick-Cats - The most effective way to assign Outlook categories: http://www.shareit.com/product.html?...4&languageid=1 (German: http://www.VBOffice.net/product.html?pub=6) Am Thu, 12 Apr 2007 18:30:03 -0700 schrieb bhardwajrishi: Hi All, Can some one please check .. what is wrong with this .. I am using it on outlook 2003 and it does not work .. ![]() ' ThisOutlookSession: Option Explicit Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) If Item.Class olMail Then Exit Sub Dim r As Recipient For Each r In Item.Recipients If StrComp(r.Address, ", vbTextCompare) = 0 Then Item.ReadReceiptRequested = True MsgBox "Requesting Read Receipt from " & r.Name End If Next End Sub |
#5
|
|||
|
|||
![]()
Are you creating an email and making the it contain a read reciept?
That is what I'm trying to do but I can't figure it out, because I don't know the code to add a read reciept. EggHeadCafe.com - .NET Developer Portal of Choice http://www.eggheadcafe.com |
#6
|
|||
|
|||
![]() MailItem.ReadReceiptRequested = True -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Quick-Cats - Categorize Outlook data: http://www.vboffice.net/product.html...&lang=en&pub=6 Am Tue, 17 Apr 2007 08:31:23 -0700 schrieb Mike: Are you creating an email and making the it contain a read reciept? That is what I'm trying to do but I can't figure it out, because I don't know the code to add a read reciept. EggHeadCafe.com - .NET Developer Portal of Choice http://www.eggheadcafe.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Read receipt | rob | Outlook Express | 5 | December 29th 06 10:11 PM |
Delivery receipt and read receipt not working | Brad | Outlook - Installation | 0 | November 23rd 06 08:25 PM |
Read receipt | [email protected] | Outlook - General Queries | 0 | October 12th 06 09:31 PM |
Why would someone get a read receipt if it wasn't set | Crimson | Outlook - General Queries | 4 | August 6th 06 10:55 PM |
Read Receipt | jeffatsc | Outlook - Installation | 0 | March 28th 06 06:03 PM |