User916960176 posted
Hello.
I'm creating small application written in C# which is going to be used for sending emails from webpage.
It has 4 textboxes : From, Bcc, Msg, and EmailUrl.
And now to my problem: When user puts url in EmailUrl textbox the application must send webpage with embedded images.
Now, i don't want to save all images from that webpage to the disk, but i want to find other solution. I heard that it can be done by storing images in memorystream and then pass it to the Linkedresource but i can't make it work.
I've created functions for retrieving html, retrieving img urls with complete path (not just i.e. images/image.jpg), sending email etc. .
Thank you in advance!