摘要
最近要在邮件提醒功能中添加,自动回复的功能。在移动端获取用户在outlook上是否开启了自动回复功能,如果用户在outlook上开启了自动回复功能, 获取用户自动回复的内容,如果没有开启,用户可以在移动端开启自动回复并且可以设置自动回复的内容,当然,用户也可以在移动端进行关闭。
一个例子
ExchangeService service = Main(= Uri(= NetworkCredential(,, oofSettiing = service.GetUserOofSettings( (oofSettiing != msg == = doc.DocumentNode.SelectNodes( (pLists != && pLists.Count > ( item
注意获取的自动回复内容为html标签的,所以需要过滤,这里使用HtmlAgilityPack组件,对html进行解析。
如图所示
myOOF =
myOOF.State =
</span><span style="color: #008000;">//</span><span style="color: #008000;"> Select the time period during which to send OOF messages.</span>
myOOF.Duration = <span style="color: #0000ff;">new</span> TimeWindow(DateTime.Now.AddDays(<span style="color: #800080;">4</span>),DateTime.Now.AddDays(<span style="color: #800080;">5</span><span style="color: #000000;">));
</span><span style="color: #008000;">//</span><span style="color: #008000;"> Select the external audience that will receive OOF messages.</span>
myOOF.ExternalAudience =<span style="color: #000000;"> OofExternalAudience.All;
</span><span style="color: #008000;">//</span><span style="color: #008000;"> Set the OOF message for your internal audience.</span>
myOOF.InternalReply = <span style="color: #0000ff;">new</span> OofReply(<span style="color: #800000;">"</span><span style="color: #800000;">I'm out of office. I'll be back tomorrow. Thanks!</span><span style="color: #800000;">"</span><span style="color: #000000;">);
</span><span style="color: #008000;">//</span><span style="color: #008000;"> Set the OOF message for your external audience.</span>
myOOF.ExternalReply = <span style="color: #0000ff;">new</span> OofReply(<span style="color: #800000;">"</span><span style="color: #800000;">I'm out of the office but will reply to emails when I return. Thanks!</span><span style="color: #800000;">"</span><span style="color: #000000;">);
service.SetUserOofSettings(</span><span style="color: #800000;">"user</span><span style="color: #800000;">@xxxx.com</span><span style="color: #800000;">"</span>,myOOF);</pre>
403f60b402c46295123f3754.png" alt="">