Click here to Skip to main content
15,889,754 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
C#
I have a SBS2013 with several Windows 7 clients running Outlook 2013.
For some reason the Outlook 2013 clients are not able to sent out mails with attacments larger than 20 MB even though Exchange 2013 seems to be configured for this??
 
 
Any helpful feedback is highly appreciated.. 


What I have tried:

if (email.Attachments.Count > 0)
{
for (int i = 1; i < email.Attachments.Count + 1; i++)
{
string attpath = System.Configuration.ConfigurationManager.AppSettings["FileAttachment"] + email.Attachments[i].FileName;
email.Attachments[i].SaveAsFile(attpath);
oMsg.Attachments.Add(email);
email.UnRead = true;
File.Delete(System.Configuration.ConfigurationManager.AppSettings["FileAttachment"] + email.Attachments[i].FileName);
}
}
Posted
Updated 15-May-16 21:42pm

There is a client side default limit of 20MB in Outlook 2013, even if you configure the Exchange server to accept bigger attachments.

This page shows how to change that limit on the client:

https://support.microsoft.com/en-us/kb/2813269[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900