[HELP] Sending Pictureshow can i send picturebox1 by email i could send everything else but picturebox
Originally Posted by ViittO how can i send picturebox1 by email i could send everything else but picturebox Add it as an attachment, to do that you need to save picturebox1 as a file and then attach it. The code to save the picturebox1's image as a file is Code: PictureBox1.Image.Save(Location Goes Here, System.Drawing.Imaging.ImageFormat.bmp) Then where ever you save the file to, just attach the file to the email
yes Code: If FileExists(FileName/Location) Then _ .Attachments.Add(FileName/Location) If you are using SMTP that is.