Hi All,
Target platform Windows 6. I need to send e-mail from the handheld, but I would like to make all CC invisible. But it doesn't work I still see all CC. Here is my code;
Dim smtp As New Smtp
Dim mail As New MailMessage()
mail.From = New MailAddressCollection("server.com")
mail.To.Add(emailaddressTo)
mail.CC.Add(New MailAddress("emailaddress1"))
mail.CC.Add(New MailAddress("emailaddress2"))
mail.CC.RemoveAt(2)
mail.Subject = "TEST Receipt Confirmation TEST"
mail.BodyText = body