G
Guest
I need to attach a file to an email. This is the file:
HttpPostedFile f = ResumeUpload.PostedFile;
Stream i = f.InputStream;
string buf = i.EndRead();
How can I attach this file directly from memory without writing it to disk
first?
HttpPostedFile f = ResumeUpload.PostedFile;
Stream i = f.InputStream;
string buf = i.EndRead();
How can I attach this file directly from memory without writing it to disk
first?