G
Guy Cohen
Hi all
I use:
Dim message As New MailMessage(txtTo.Text, txtFrom.Text, txtSubject.Text,
txtBody.Text)
Dim emailClient As New SmtpClient(txtSMTPServer.Text)
emailClient.Send(message)
And its working fine.
However I was wondering if there is a way to confirm that the email was sent.
The send method does not return anything....
Please advise
TIA
Guy Cohen
I use:
Dim message As New MailMessage(txtTo.Text, txtFrom.Text, txtSubject.Text,
txtBody.Text)
Dim emailClient As New SmtpClient(txtSMTPServer.Text)
emailClient.Send(message)
And its working fine.
However I was wondering if there is a way to confirm that the email was sent.
The send method does not return anything....
Please advise
TIA
Guy Cohen