TIFF格式图片是取自 数据库中的二进制
请问该怎么做啊?
------解决思路----------------------
发邮件:
SmtpClient.Send Method
https://msdn.microsoft.com/en-us/library/swas0fwc%28v=vs.110%29.aspx
附件;
看下面链接里的Example
https://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage(v=vs.110).aspx
从内存中构建Attachement可以用:
Attachment att = new Attachment(new MemoryStream(bytes), name);