Puedes utilizar como referencia el equivalente en VB
Código vb:
Ver originalImports System.Net.Mail
*
Dim smtp As New System.Net.Mail.SmtpClient
* * * * * * Dim correo As New System.Net.Mail.MailMessage
[B]* * * * * * Dim Att As System.Net.Mail.Attachment[/B]
*
* * * * * * With smtp
* * * * * * * * .Port = "Puerto"
* * * * * * * * .Host = "smtp.server"
* * * * * * * * .Credentials = New System.Net.NetworkCredential("tu correo", "tu password")
* * * * * * * * .EnableSsl = False
* * * * * * End With
*
* * * * * * With correo
* * * * * * * * .From = New System.Net.Mail.MailAddress("tucorreo")
* * * * * * * * .To.Add(Label1.Text) ' Aqui va el destinatario o puedes leerlo de un lbl
* * * * * * * * .Subject = "Titulo mail"
* * * * * * * * .Body = "<strong><b>Aqui va el mensaje, de igual manera puedes leerlo de un textbox o un label</b></strong>"
* * * * * * * * .IsBodyHtml = True
* * * * * * * * .Priority = System.Net.Mail.MailPriority.Normal ' Le das la prioridad
* * * * * * End With
* * * * * * smtp.Send(correo)