I am trying to send an Email with an embedded image in vb.net 2005. The email is sent but the image appears as a broken link. The code I am using is below:
'create the mail message
Dim mail As New MailMessage()
'set the addresses
mail.From = New MailAddress("me@mycompany.com")
mail.To.Add("rbyrne@brombergs.com")
mail.To.Add("rbyrne1@charter.net")
'set the content
mail.Subject = "This is an email"
Dim A As System.Net.Mail.Attachment = New System.Net.Mail.Attachment("c:\anniversary.jpg")
Dim RGen As Random = New Random()
A.ContentId = RGen.Next(100000, 9999999).ToString()
mail.Body = "Here is the image --> <img src=""cid:" + A.ContentId + """>"
mail.IsBodyHtml = True
'send the message
Dim smtp As New SmtpClient(mailserver.Text) 'specify the mail server address
smtp.Send(mail)
'create the mail message
Dim mail As New MailMessage()
'set the addresses
mail.From = New MailAddress("me@mycompany.com")
mail.To.Add("rbyrne@brombergs.com")
mail.To.Add("rbyrne1@charter.net")
'set the content
mail.Subject = "This is an email"
Dim A As System.Net.Mail.Attachment = New System.Net.Mail.Attachment("c:\anniversary.jpg")
Dim RGen As Random = New Random()
A.ContentId = RGen.Next(100000, 9999999).ToString()
mail.Body = "Here is the image --> <img src=""cid:" + A.ContentId + """>"
mail.IsBodyHtml = True
'send the message
Dim smtp As New SmtpClient(mailserver.Text) 'specify the mail server address
smtp.Send(mail)