ConversationID is `Nothing` in VSTO Application.ItemSend sub
up vote
0
down vote
favorite
I'm trying to create a performance tracking app - which at a basic level will work out how quickly I'm replying to emails.
I think I may be using the wrong "sent item" trigger event though, because the conversation ID is nothing
for some replies in the below sub Application_ItemSend
:
Public Class ThisAddIn
Public Shared ConversationThreads As Dictionary(Of String, Date)
Private Sub Application_NewMailEx(EntryIDCollection As String) Handles Application.NewMailEx
For Each itemID In Split(EntryIDCollection, ",")
Dim item = Application.Session.GetItemFromID(itemID)
If TypeName(item) = "MailItem" Then
'is it a Tracked Email
Dim msg As Outlook.MailItem
msg = item
ConversationThreads.Add(msg.ConversationID, Now())
End If
Next
End Sub
Private Sub Application_ItemSend(Item As Object, ByRef Cancel As Boolean) Handles Application.ItemSend
If TypeName(Item) = "MailItem" Then
'is it a Tracked Email
Dim msg As Outlook.MailItem
msg = Item
For Each tRecipient As Outlook.Recipient In msg.Recipients
If Not msg.ConversationID Is Nothing AndAlso
ConversationThreads.ContainsKey(msg.ConversationID) Then
Call OpenCloseThread(msg.ConversationID)
End If
Next
End If
End Sub
end class
Should I be using a different trigger for this sub?
vb.net outlook vsto
add a comment |
up vote
0
down vote
favorite
I'm trying to create a performance tracking app - which at a basic level will work out how quickly I'm replying to emails.
I think I may be using the wrong "sent item" trigger event though, because the conversation ID is nothing
for some replies in the below sub Application_ItemSend
:
Public Class ThisAddIn
Public Shared ConversationThreads As Dictionary(Of String, Date)
Private Sub Application_NewMailEx(EntryIDCollection As String) Handles Application.NewMailEx
For Each itemID In Split(EntryIDCollection, ",")
Dim item = Application.Session.GetItemFromID(itemID)
If TypeName(item) = "MailItem" Then
'is it a Tracked Email
Dim msg As Outlook.MailItem
msg = item
ConversationThreads.Add(msg.ConversationID, Now())
End If
Next
End Sub
Private Sub Application_ItemSend(Item As Object, ByRef Cancel As Boolean) Handles Application.ItemSend
If TypeName(Item) = "MailItem" Then
'is it a Tracked Email
Dim msg As Outlook.MailItem
msg = Item
For Each tRecipient As Outlook.Recipient In msg.Recipients
If Not msg.ConversationID Is Nothing AndAlso
ConversationThreads.ContainsKey(msg.ConversationID) Then
Call OpenCloseThread(msg.ConversationID)
End If
Next
End If
End Sub
end class
Should I be using a different trigger for this sub?
vb.net outlook vsto
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to create a performance tracking app - which at a basic level will work out how quickly I'm replying to emails.
I think I may be using the wrong "sent item" trigger event though, because the conversation ID is nothing
for some replies in the below sub Application_ItemSend
:
Public Class ThisAddIn
Public Shared ConversationThreads As Dictionary(Of String, Date)
Private Sub Application_NewMailEx(EntryIDCollection As String) Handles Application.NewMailEx
For Each itemID In Split(EntryIDCollection, ",")
Dim item = Application.Session.GetItemFromID(itemID)
If TypeName(item) = "MailItem" Then
'is it a Tracked Email
Dim msg As Outlook.MailItem
msg = item
ConversationThreads.Add(msg.ConversationID, Now())
End If
Next
End Sub
Private Sub Application_ItemSend(Item As Object, ByRef Cancel As Boolean) Handles Application.ItemSend
If TypeName(Item) = "MailItem" Then
'is it a Tracked Email
Dim msg As Outlook.MailItem
msg = Item
For Each tRecipient As Outlook.Recipient In msg.Recipients
If Not msg.ConversationID Is Nothing AndAlso
ConversationThreads.ContainsKey(msg.ConversationID) Then
Call OpenCloseThread(msg.ConversationID)
End If
Next
End If
End Sub
end class
Should I be using a different trigger for this sub?
vb.net outlook vsto
I'm trying to create a performance tracking app - which at a basic level will work out how quickly I'm replying to emails.
I think I may be using the wrong "sent item" trigger event though, because the conversation ID is nothing
for some replies in the below sub Application_ItemSend
:
Public Class ThisAddIn
Public Shared ConversationThreads As Dictionary(Of String, Date)
Private Sub Application_NewMailEx(EntryIDCollection As String) Handles Application.NewMailEx
For Each itemID In Split(EntryIDCollection, ",")
Dim item = Application.Session.GetItemFromID(itemID)
If TypeName(item) = "MailItem" Then
'is it a Tracked Email
Dim msg As Outlook.MailItem
msg = item
ConversationThreads.Add(msg.ConversationID, Now())
End If
Next
End Sub
Private Sub Application_ItemSend(Item As Object, ByRef Cancel As Boolean) Handles Application.ItemSend
If TypeName(Item) = "MailItem" Then
'is it a Tracked Email
Dim msg As Outlook.MailItem
msg = Item
For Each tRecipient As Outlook.Recipient In msg.Recipients
If Not msg.ConversationID Is Nothing AndAlso
ConversationThreads.ContainsKey(msg.ConversationID) Then
Call OpenCloseThread(msg.ConversationID)
End If
Next
End If
End Sub
end class
Should I be using a different trigger for this sub?
vb.net outlook vsto
vb.net outlook vsto
asked Nov 22 at 14:44
Martin KS
141318
141318
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Call msg.Save()
before reading the ConversationID
property.
That hasn't worked. Does it matter that the test "conversation" is between myself and another internal user?
– Martin KS
Nov 23 at 11:47
If you look at the item in the Sent Items folder, does it have ConversationID property set (select the message, click Item button on the OuItlookSpy ribbon, select ConversationID property)?
– Dmitry Streblechenko
Nov 24 at 3:32
Yes, and it matches the conversation ID of the message to which I've replied!
– Martin KS
Nov 26 at 12:32
I can only suggest using Items.ItemAdd event on the Sent Items folder instead of the Application.ItemSend
– Dmitry Streblechenko
Nov 26 at 14:52
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433358%2fconversationid-is-nothing-in-vsto-application-itemsend-sub%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Call msg.Save()
before reading the ConversationID
property.
That hasn't worked. Does it matter that the test "conversation" is between myself and another internal user?
– Martin KS
Nov 23 at 11:47
If you look at the item in the Sent Items folder, does it have ConversationID property set (select the message, click Item button on the OuItlookSpy ribbon, select ConversationID property)?
– Dmitry Streblechenko
Nov 24 at 3:32
Yes, and it matches the conversation ID of the message to which I've replied!
– Martin KS
Nov 26 at 12:32
I can only suggest using Items.ItemAdd event on the Sent Items folder instead of the Application.ItemSend
– Dmitry Streblechenko
Nov 26 at 14:52
add a comment |
up vote
0
down vote
Call msg.Save()
before reading the ConversationID
property.
That hasn't worked. Does it matter that the test "conversation" is between myself and another internal user?
– Martin KS
Nov 23 at 11:47
If you look at the item in the Sent Items folder, does it have ConversationID property set (select the message, click Item button on the OuItlookSpy ribbon, select ConversationID property)?
– Dmitry Streblechenko
Nov 24 at 3:32
Yes, and it matches the conversation ID of the message to which I've replied!
– Martin KS
Nov 26 at 12:32
I can only suggest using Items.ItemAdd event on the Sent Items folder instead of the Application.ItemSend
– Dmitry Streblechenko
Nov 26 at 14:52
add a comment |
up vote
0
down vote
up vote
0
down vote
Call msg.Save()
before reading the ConversationID
property.
Call msg.Save()
before reading the ConversationID
property.
answered Nov 23 at 3:08
Dmitry Streblechenko
42.2k32760
42.2k32760
That hasn't worked. Does it matter that the test "conversation" is between myself and another internal user?
– Martin KS
Nov 23 at 11:47
If you look at the item in the Sent Items folder, does it have ConversationID property set (select the message, click Item button on the OuItlookSpy ribbon, select ConversationID property)?
– Dmitry Streblechenko
Nov 24 at 3:32
Yes, and it matches the conversation ID of the message to which I've replied!
– Martin KS
Nov 26 at 12:32
I can only suggest using Items.ItemAdd event on the Sent Items folder instead of the Application.ItemSend
– Dmitry Streblechenko
Nov 26 at 14:52
add a comment |
That hasn't worked. Does it matter that the test "conversation" is between myself and another internal user?
– Martin KS
Nov 23 at 11:47
If you look at the item in the Sent Items folder, does it have ConversationID property set (select the message, click Item button on the OuItlookSpy ribbon, select ConversationID property)?
– Dmitry Streblechenko
Nov 24 at 3:32
Yes, and it matches the conversation ID of the message to which I've replied!
– Martin KS
Nov 26 at 12:32
I can only suggest using Items.ItemAdd event on the Sent Items folder instead of the Application.ItemSend
– Dmitry Streblechenko
Nov 26 at 14:52
That hasn't worked. Does it matter that the test "conversation" is between myself and another internal user?
– Martin KS
Nov 23 at 11:47
That hasn't worked. Does it matter that the test "conversation" is between myself and another internal user?
– Martin KS
Nov 23 at 11:47
If you look at the item in the Sent Items folder, does it have ConversationID property set (select the message, click Item button on the OuItlookSpy ribbon, select ConversationID property)?
– Dmitry Streblechenko
Nov 24 at 3:32
If you look at the item in the Sent Items folder, does it have ConversationID property set (select the message, click Item button on the OuItlookSpy ribbon, select ConversationID property)?
– Dmitry Streblechenko
Nov 24 at 3:32
Yes, and it matches the conversation ID of the message to which I've replied!
– Martin KS
Nov 26 at 12:32
Yes, and it matches the conversation ID of the message to which I've replied!
– Martin KS
Nov 26 at 12:32
I can only suggest using Items.ItemAdd event on the Sent Items folder instead of the Application.ItemSend
– Dmitry Streblechenko
Nov 26 at 14:52
I can only suggest using Items.ItemAdd event on the Sent Items folder instead of the Application.ItemSend
– Dmitry Streblechenko
Nov 26 at 14:52
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433358%2fconversationid-is-nothing-in-vsto-application-itemsend-sub%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown