... Bitmap bmp; ... MemoryStream = new MemoryStream(); bmp.Save(memStream, ImageFormat.Jpeg); ... ContentType contentType = new ContentType(); contentType.MediaType = MediaTypeNames.Image.Jpeg; contentType.Name = "screen"; MailMessage mail = new MailMessage(); ... mail.Attachments.Add(new Attachment(memStream, contentType)); ... SmtpClient.Send(mail);