Sending an image file via email
-
Hi I was wondering whether anyone could give me some hints on incorporating email functionality in my application. I'm using WPF to create 3D models, I then have an option where the user can save an image file of the model. Now I want to include functionality where the user can email this specific picture. Is there a way to just open the default email client, but not just open it, create a new message and attach this image file automatically? Thanks in advance
-
Hi I was wondering whether anyone could give me some hints on incorporating email functionality in my application. I'm using WPF to create 3D models, I then have an option where the user can save an image file of the model. Now I want to include functionality where the user can email this specific picture. Is there a way to just open the default email client, but not just open it, create a new message and attach this image file automatically? Thanks in advance
You can use IMAP feature to send email from .net to an email server. specially if you use IMAP it can handle https(google, yahoo, msn . ..)... or you can use smtp library to send email... for both you must have a valid email account either in google yahoo msn or of your own domain(which will have email option)... in your imap or smtp conf you will provide your authentication details and the target email id... then you have to follow certain steps to attach an image... that could be very simple in .net cause i did it in php...
Today's Beautiful Moments are Tomorrow's Beautiful Memories
-
Hi I was wondering whether anyone could give me some hints on incorporating email functionality in my application. I'm using WPF to create 3D models, I then have an option where the user can save an image file of the model. Now I want to include functionality where the user can email this specific picture. Is there a way to just open the default email client, but not just open it, create a new message and attach this image file automatically? Thanks in advance
using the smtp protocal to send the picture as the attached file. you can see the smtp spec file in the Wikipedia.