Posted on: 9/18/2014 5:40:27 AM | Views : 425

Hi

when I want send email from my page I have an error
Bad sequence of commands. The server response was: This mail server requires authentication when attempting to send to a non-local e-mail address. Please check your mail client settings or contact your administrator to verify that the domain or address is defined for this server
 
this my code
 
'Create instance of main mail message class. Dim mailMessage As System.Net.Mail.MailMessage = New System.Net.Mail.MailMessage() 'Configure mail mesage 'Set the From address with user input 'mailMessage.From = New System.Net.Mail.MailAddress(txtFromAddress.Text.Trim()) 'Get From address in web.config mailMessage.From = N ...

Go to the complete details ...