hola
Desarrolle una aplicacion en donde creo una plantilla para un E-Mail que se envia desde el outlook, el cuerpo del mensaje incluye imagenes , para esto adjunto los archivos de las imagen que muestro en el cuerpo ....Pero ahora me piden que esos adjuntos
esten ocultos al destinatario COMO PUEDO HACERLO ?
este es el codigo que uso para mostrar imagenes en el cuerpo :
Dim ruta2 As String = Path.Combine(System.Windows.Forms.Application.StartupPath, "LogBlack.bmp")
Dim attachment2 As Attachment = objMail.Attachments.Add(ruta2, OlAttachmentType.olEmbeddeditem, Nothing, "LogBlack.bmp")
Dim imageCid2 As String = "LogBlack.bmp@123"
attachment2.PropertyAccessor.SetProperty("http://schemas.microsoft.com/mapi/proptag/0x3712001E", imageCid2)
Dim ruta As String = Path.Combine(System.Windows.Forms.Application.StartupPath, "Rif.jpg")
Dim attachment As Attachment = objMail.Attachments.Add(ruta, OlAttachmentType.olEmbeddeditem, Nothing, "Rif.JPG")
Dim imageCid As String = "Rif.jpg@123"
attachment.PropertyAccessor.SetProperty("http://schemas.microsoft.com/mapi/proptag/0x3712001E", imageCid)
objMail.HTMLBody = [String].Format("<body><img src=""cid:{0}"" width='60' height='40'></body> ", imageCid2) & objMail.Body & [String].Format("<body><img
src=""cid:{0}"" width='1300' height='400'></body>", imageCid)
EFRAIN MEJIAS C VALENCIA - VENEZUELA