Hello Everyone ,
i want to know the size of an email through any method or activity ? is there any way to know the size of an email without downloading the email as a file ?
Have a look on this link.
hi sanjit,
i want to get the size of a perticular email ,here the information is about whole mailbox…?
They method is provided over there how you can get the size of the mail box.
pop.Host = "outlook.office365.com";
pop.Username = "LeonDavisLD@outlook.com";
pop.Password = "password";
pop.Port = 995;
pop.EnableSsl = true;
//Get the size of mailbox
Console.WriteLine("Mailbox size: " + pop.GetSize() + " bytes");