System.Net.Mail

di il
1 risposte

System.Net.Mail

Buongiorno,
Ho un piccolo problema che non so se si puo risolvere,
quando mando un email dal software, tutti i form si frizzano.
Avete qualche consiglio per evitare cio?
Try
            Dim SmtpServer As New SmtpClient()
            Dim mail As New MailMessage()
            SmtpServer.Credentials = New Net.NetworkCredential("email", "pss")
            SmtpServer.Port = n_porta
            SmtpServer.Host = "smtps....."
            mail = New MailMessage()
            mail.From = New MailAddress("email")
            mail.To.Add(email)
            mail.Subject = "Test Mail"
            mail.Body = "test "
            SmtpServer.Send(mail)
        Catch ex As Exception
            MsgBox(ex.ToString)
        End Try

1 Risposte

Devi accedere o registrarti per scrivere nel forum
1 risposte