我正在使用webdav创建Outlook预约。我正在使用以下帖子正文来创建约会。
<?xml version="1.0"?>
<g:propertyupdate xmlns:g="DAV:"
xmlns:e="http://schemas.microsoft.com/exchange/"
xmlns:mapi="http://schemas.microsoft.com/mapi/"
xmlns:mapit="http://schemas.microsoft.com/mapi/proptag/"
xmlns:x="xml:"
xmlns:cal="urn:schemas:calendar:"
xmlns:dt="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/"
xmlns:colors="http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-C000-000000000046}/"
xmlns:header="urn:schemas:mailheader:"
xmlns:mail="urn:schemas:httpmail:"
>
<g:set>
<g:prop>
<g:contentclass>urn:content-classes:appointment</g:contentclass>
<e:outlookmessageclass>IPM.Appointment</e:outlookmessageclass>
<mail:subject>Test</mail:subject>
<mail:htmldescription><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<html><body>
<table>
<tr><td>Telefonnummer:</td>
<td><b>123123423453245</b></td></tr>
<tr><td>Name</td>
<td style="color:red;">Hille, Christian</td></tr>
</table>
</body>
</html>
</mail:htmldescription>
<cal:location></cal:location>
<cal:dtstart dt:dt="dateTime.tz">2009-10-05T14:37:17.000Z</cal:dtstart>
<cal:dtend dt:dt="dateTime.tz">2009-10-05T14:52:17.000Z</cal:dtend>
<cal:busystatus>BUSY</cal:busystatus>
<cal:reminderoffset dt:dt="int">900</cal:reminderoffset>
<colors:0x8214 dt:dt="int">10</colors:0x8214>
</g:prop>
</g:set>
</g:propertyupdate>
约会已创建。但是outlook并没有将文本显示为html中的格式。粗体文本格式化为粗体。表和style属性将被忽略。
outlook是否支持html正文格式化?如何在约会主体中显示表格?
答案 0 :(得分:1)
做了一些研究。
没有支持使用webdav进行完整的html格式化。支持一些基本的html标记(<b>
,<i>
)但表格不支持。
只有使用rtf格式化才能实现高级格式化 但是 rtf格式化的约会无法通过webdav访问。这样做会出现http 502错误。
了解更多:
http://www.outlookcode.com/threads.aspx?forumid=2&messageid=6599
http://blogs.msdn.com/deva/archive/2008/07/16/kb-application-support-for-webdav-to-access-exchange-server.aspx