Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After Sending a mail using System.Net.Mail.SmtpClient with a .jpeg file attached to it, I am not able to open that photo. Instead I am getting an error in the Windows Photo Viewer telling - "windows photo viewer can't open this picture because either photo viewer doesn't support this file format or you don't have the latest updates to photo viewer" . I have Used C# . The Mail is going Fine wihere i have also attached an Excel Sheet. It is opening Fine , but the image is not. Please Help..

share|improve this question
We are probably gonna need some code to see where things go wrong. – Jan-Peter Vos Dec 11 '12 at 9:14
Which Code Do you want to see. The code where the Attachment is done or any thing different?? – Nayan_07 Dec 11 '12 at 9:16
If the following helps.. please tell me.. foreach (FileInfo fi in files) { objAtt = new Attachment(strFilePath,MediaTypeNames.Application.Octet); objAtt.Name = fi.Name; mailMessage.Attachments.Add(objAtt); } – Nayan_07 Dec 11 '12 at 9:20
"dir" is an Object of ----- DirectoryInfo dir = new DirectoryInfo("path"); – Nayan_07 Dec 11 '12 at 9:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.