Sign In
Dan's WebDAV 101
This blog covers Messaging API development for Exchange and Outlook. My name is Daniel Bagley, I'm on the Messaging Developer Team.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
2007
appointment
attachments
C#
CDO
CDO 1.21
CDOEX
DevMsgTeam
EWS
example
Exchange
exchange web services
HOWTO
item
mapi
meeting
message
mime
Outlook
OWA
sample
VB
vbscript
WebDAV
webdav101blog
Archive
Archives
February 2012
(3)
January 2012
(1)
December 2011
(1)
September 2011
(9)
June 2011
(1)
February 2011
(1)
January 2011
(2)
December 2010
(2)
June 2010
(2)
January 2010
(1)
December 2009
(3)
November 2009
(1)
October 2009
(1)
August 2009
(2)
June 2009
(1)
April 2009
(2)
February 2009
(2)
January 2009
(6)
December 2008
(3)
October 2008
(3)
September 2008
(13)
August 2008
(7)
July 2008
(9)
June 2008
(3)
May 2008
(8)
April 2008
(4)
March 2008
(29)
February 2008
(9)
January 2008
(5)
November 2007
(11)
May 2007
(7)
April 2007
(2)
July 2006
(1)
June 2006
(1)
July, 2008
MSDN Blogs
>
Dan's WebDAV 101
>
July, 2008
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Dan's WebDAV 101
Adding Inline Attachments with CDOSYS and System.Net.Mail.
Posted
over 4 years ago
by
Webdav101
1
Comments
In the following samples, I'm going to send an inline attachment using CDOSYS and System.Net.Mail (SNM). Lets say you have an html document with text above and below a jpg file and you want this document inside of a message you are going to send. Below...
Dan's WebDAV 101
HOWTO: Set and Get the a multibyte (Japanese, Chinese, Etc) custom header with CDOSYS
Posted
over 4 years ago
by
Webdav101
1
Comments
Custom headers in multibyte languages (Japanese, Chinese, etc) will not be encoded properly when set using CDO alone. They may appear to be correctly set, however when read back on a recieved message they may be messed-up. Here is an example of a Japanese...
Dan's WebDAV 101
WebDAV: XML DOM vs managed classes.
Posted
over 4 years ago
by
Webdav101
1
Comments
I've seen a lot of issues with using the MSXML DOM when trying to get credentials from the owaauth.dll for FBA authentication. The managed classes seem to work all the time and in all versions. However, the MSXML DOM wont always reuturn cookies and...
Dan's WebDAV 101
My .EDB file grows when I search.
Posted
over 4 years ago
by
Webdav101
5
Comments
When doing a WebDAV or any other search, you will likely see the .EDB file expands. When performing a search against a mailbox using WebDAV or any other API, you may see the .EDB file grow in size. Don't panic, this is normal. When a search is performed...
Dan's WebDAV 101
Howto: Add a body part to a message using CDOSYS.
Posted
over 4 years ago
by
Webdav101
0
Comments
The sample below shows how to add an additional body part to a message using cdosys. This example demonstrates adding a "text/calendar" (vcalendar) body part, however it should be possible to use this to add "text/plain", "text/html" and other types....
Dan's WebDAV 101
Howto: Add a body part using System.Net.Mail
Posted
over 4 years ago
by
Webdav101
0
Comments
The sample below shows how to add an additional body part to a message using System.Net.Mail. This example demonstrates adding a "text/calendar" (vcalendar) body part, however it should be possible to use this to add "text/plain", "text/html" and other...
Dan's WebDAV 101
Example of setting headers with System.Web.Mail
Posted
over 4 years ago
by
Webdav101
1
Comments
//============================ Optional Settings ======================== if (this.Priority.Length != 0) { if (this.Priority == "Non Urgent") { oMsg.Priority = System.Web.Mail.MailPriority.Low; }; if (this.Priority == "Normal") { oMsg.Priority = System...
Dan's WebDAV 101
Example of setting headers with CDOSYS
Posted
over 4 years ago
by
Webdav101
1
Comments
//============================ Optional Settings ======================== if (this.Priority.Length != 0) { // Well... it seems that priority is not what needs to be set to get priority set... // Looks like setting importance will set priority... at...
Dan's WebDAV 101
Example of setting headers with System.Net.Mail
Posted
over 4 years ago
by
Webdav101
1
Comments
Here is a partial sample on setting header fields with System.Net.Mail: //============================ Instance Message =========================== oMsg = new System.Net.Mail.MailMessage(); //============================ Optional Settings =====...
Page 1 of 1 (9 items)