LiquidPixel
Programmer
I have bitmapData (bitArray) coming out of Flash and being parsed into a Bitmap object in ASP.NET. I can get the image to render on the screen via:
Bitmap.Save(Response.OutputStream, ImageFormat.Jpeg);
Obviously this writes during the response call BUT what I need to do is have this image not render on screen but email to a user as either an attachment or inline image. I simply don't know how to package and/or render the image to an email.
Subsequently I would have the page Response.Redirect to a "your info has been sent page".
Does someone know how to render and/or inject the image and send it via email???
Any help here would be greatly appreciated.
Thanks
Bitmap.Save(Response.OutputStream, ImageFormat.Jpeg);
Obviously this writes during the response call BUT what I need to do is have this image not render on screen but email to a user as either an attachment or inline image. I simply don't know how to package and/or render the image to an email.
Subsequently I would have the page Response.Redirect to a "your info has been sent page".
Does someone know how to render and/or inject the image and send it via email???
Any help here would be greatly appreciated.
Thanks