我正在编写一个同步工具,它将把所有收到和发送的电子邮件发送到我们在CakePHP中构建的PHP应用程序。为此,我正在使用Streaming Notifications。
现在,对于我想听的每个smtp地址,我正在创建一个新的服务,它将听取"创建" "收件箱中的事件"和" SentItems"夹。我通过一个有权冒充所有这些帐户的帐户来做这件事。
我正在谈论的文件夹和事件(C#)
// The folders we want to listen to
FolderId[] folderIds = new FolderId[] {
WellKnownFolderName.Inbox,
WellKnownFolderName.SentItems
};
// The event types we want to listen to
EventType[] eventTypes = new EventType[] {
EventType.Created
};
此外,我们正在使用Outlook365,可以通过https://portal.outlook365.com访问,然后我可以登录。当我在" Outlook365"中创建新用户时我可以登录到新创建的帐户。
但是,这就是我的问题出现的地方。当我启动该工具并将SubscriptionStreamConnection打开到该smtp地址时,它会立即触发类型为ItemEvent
的事件。所以,我假设这是一个有效的事件,就像收件箱和sentitems文件夹中新创建的电子邮件一样。但是这第一个事件并不包含我要求的所有数据,只发生一次!我第二次听到帐户时事件没有被触发,所以我认为这是某种"创建收件箱"事件,但我不确定如何将其与正常事件区分开来。
我要求的是什么(C#)
PropertySet propSet = new PropertySet(
BasePropertySet.IdOnly,
EmailMessageSchema.InternetMessageId,
// Basic data
EmailMessageSchema.Subject,
EmailMessageSchema.UniqueBody,
EmailMessageSchema.ConversationId,
EmailMessageSchema.DateTimeReceived,
EmailMessageSchema.DateTimeSent,
// Sender and recipient data
EmailMessageSchema.From,
EmailMessageSchema.ToRecipients,
EmailMessageSchema.CcRecipients,
EmailMessageSchema.BccRecipients
);
我收到的内容(XML)
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15" MinorVersion="0" MajorBuildNumber="939" MinorBuildNumber="16" Version="V2_11" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:GetItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:GetItemResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:Items>
<t:Message>
<t:ItemId Id="AA/BB/CC/DD=" ChangeKey="AA/BB" />
<t:DateTimeReceived>2014-05-13T09:47:44Z</t:DateTimeReceived>
<t:DateTimeSent>2014-05-13T09:47:44Z</t:DateTimeSent>
<t:ConversationId Id="AA=" />
<t:InternetMessageId><11aa@AMXPR07MB104.eurprd07.prod.outlook.com></t:InternetMessageId>
</t:Message>
</m:Items>
</m:GetItemResponseMessage>
</m:ResponseMessages>
</m:GetItemResponse>
</s:Body>
</s:Envelope>
请注意:为了便于阅读,我更改了ID,我保留了/
,以防它们意味着什么。
正如您所看到的,XML响应不包含我要求的所有属性,但是正常事件(当我向该新帐户发送电子邮件时)我收到完整的回复,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15" MinorVersion="0" MajorBuildNumber="939" MinorBuildNumber="16" Version="V2_11" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:GetItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:GetItemResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:Items>
<t:Message>
<t:ItemId Id="AA/BB/CC/DE=" ChangeKey="AA/BB" />
<t:Subject>My random test!</t:Subject>
<t:DateTimeReceived>2014-05-13T10:25:55Z</t:DateTimeReceived>
<t:DateTimeSent>2014-05-13T10:25:38Z</t:DateTimeSent>
<t:ConversationId Id="AA/LEGY=" />
<t:UniqueBody BodyType="Text" IsTruncated="false">Hello World</t:UniqueBody>
<t:ToRecipients>
<t:Mailbox>
<t:Name>a10 Test</t:Name>
<t:EmailAddress>a10@mytestdomain.nl</t:EmailAddress>
<t:RoutingType>SMTP</t:RoutingType>
<t:MailboxType>Mailbox</t:MailboxType>
</t:Mailbox>
</t:ToRecipients>
<t:From>
<t:Mailbox>
<t:Name>My Name - Company</t:Name>
<t:EmailAddress>canttell@example.com</t:EmailAddress>
<t:RoutingType>SMTP</t:RoutingType>
<t:MailboxType>OneOff</t:MailboxType>
</t:Mailbox>
</t:From>
<t:InternetMessageId><AA00@SRV-01.mycompany.local></t:InternetMessageId>
</t:Message>
</m:Items>
</m:GetItemResponseMessage>
</m:ResponseMessages>
</m:GetItemResponse>
</s:Body>
</s:Envelope>
当然,我可以添加一个简单的检查,例如,此事件中是否存在主题,但这对我来说似乎不对。
只是为了澄清,我的一些项目&#34;属性&#34;如下:
这是处理事件的方法的代码:
protected void _OnExchangeNotificationEvent(object sender, NotificationEventArgs args)
{
StreamingSubscriptionConnection connection = (StreamingSubscriptionConnection)sender;
StreamingSubscription subscription = args.Subscription;
// Loop through all item-related events.
foreach (NotificationEvent notification in args.Events)
{
// if the notification is NOT an item event, skip the event
if (!(notification is ItemEvent))
{
continue;
}
// Start a new thread so the main program can continue
Thread exchangeToCrmThread = new Thread(() => this._handleExchangeEventToCrm((ItemEvent)notification, args));
exchangeToCrmThread.Start();
}
}
注意_handleExchangeEventToCrm
方法,此方法实际上尝试获取EmailMessage(根据上面的PropertySet)。
只是为了澄清
为什么新用户在第一次通过ItemEvent
收听时会触发StreamingSubscribtion
?换句话说,我怎样才能区分正常&#34;电子邮件发送/接收事件来自任何其他事件,显然是&#34; ItemEvent&#34;还有吗?
我怀疑它与&#34;邮箱创建&#34;有关,但我不确定。非常感谢任何帮助!
如果有任何不清楚的地方,请询问我是否可以澄清我的问题
答案 0 :(得分:1)
我只是重新发现这一点,发现我在新邮箱上收到的第一个项目是文件夹关联项目(FAI)。因此,我的收件箱中没有任何内容出现在OWA / Outlook中,但我在收件箱中收到了CreatedEvent的通知。您可以通过检查IsAssociated元素来确定它是文件夹关联项。如果IsAssociated为真,则不是正常消息。