Hello Pavel...
How to save mail attachment (one or more per mail) to local folder disc?
Is there any function like mail.Save (path....) or something like that. Here is piece of sample code I want...
if (m.Attachments.Count > 0)
{
How to save mail attachment (one or more per mail) to local folder disc?
Is there any function like mail.Save (path....) or something like that. Here is piece of sample code I want...
if (m.Attachments.Count > 0)
{
foreach (var attachment in m.Attachments)
{
// attachment.Save //Implement here code for saving attachment
}
}