Discussion:
Contact us form SMTP mail sending error..
(too old to reply)
s***@gmail.com
2013-08-18 16:26:22 UTC
Permalink
Hi,

I have an c# application which is used to send mail in contact us form.
When i run the application on localhost it work perfectally, but when i try to run in via hosting the application on server it gives the below error :

System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required. Learn more at at System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode, String response) at System.Net.Mail.MailCommand.Send(SmtpConnection conn, Byte[] command, String from) at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception) at System.Net.Mail.SmtpClient.Send(MailMessage message) at quote.Button1_Click(Object sender, EventArgs e)

i tried different methods but did not work.

Please can anybody provide a solution for this.
Arne Vajhøj
2013-08-18 16:48:07 UTC
Permalink
Post by s***@gmail.com
I have an c# application which is used to send mail in contact us
form. When i run the application on localhost it work perfectally,
but when i try to run in via hosting the application on server it
System.Net.Mail.SmtpException: The SMTP server requires a secure
connection or the client was not authenticated. The server response
was: 5.5.1 Authentication Required. Learn more at at
System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode,
String response) at System.Net.Mail.MailCommand.Send(SmtpConnection
conn, Byte[] command, String from) at
System.Net.Mail.SmtpTransport.SendMail(MailAddress sender,
MailAddressCollection recipients, String deliveryNotify,
SmtpFailedRecipientException& exception) at
System.Net.Mail.SmtpClient.Send(MailMessage message) at
quote.Button1_Click(Object sender, EventArgs e)
i tried different methods but did not work.
Please can anybody provide a solution for this.
The error message is rather clear.

"The SMTP server requires a secure
connection or the client was not authenticated. The server response
was: 5.5.1 Authentication Required."

You need to authenticate to the SMTP server.

Arne
s***@gmail.com
2013-08-21 06:16:54 UTC
Permalink
Post by Arne Vajhøj
Post by s***@gmail.com
I have an c# application which is used to send mail in contact us
form. When i run the application on localhost it work perfectally,
but when i try to run in via hosting the application on server it
System.Net.Mail.SmtpException: The SMTP server requires a secure
connection or the client was not authenticated. The server response
was: 5.5.1 Authentication Required. Learn more at at
System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode,
String response) at System.Net.Mail.MailCommand.Send(SmtpConnection
conn, Byte[] command, String from) at
System.Net.Mail.SmtpTransport.SendMail(MailAddress sender,
MailAddressCollection recipients, String deliveryNotify,
SmtpFailedRecipientException& exception) at
System.Net.Mail.SmtpClient.Send(MailMessage message) at
quote.Button1_Click(Object sender, EventArgs e)
i tried different methods but did not work.
Please can anybody provide a solution for this.
The error message is rather clear.
"The SMTP server requires a secure
connection or the client was not authenticated. The server response
was: 5.5.1 Authentication Required."
You need to authenticate to the SMTP server.
Arne
Hi Arne,

I am new to this.
I would be great if you can guide me for resolving this,
i.e authenticating the SMTP Server
Arne Vajhøj
2013-08-22 00:43:49 UTC
Permalink
Post by s***@gmail.com
Post by Arne Vajhøj
The error message is rather clear.
"The SMTP server requires a secure
connection or the client was not authenticated. The server response
was: 5.5.1 Authentication Required."
You need to authenticate to the SMTP server.
I am new to this.
I would be great if you can guide me for resolving this,
i.e authenticating the SMTP Server
The SmtpClient class has a Credentials property for this
purpose.

Arne
t***@gmail.com
2014-01-09 14:31:38 UTC
Permalink
Post by s***@gmail.com
Hi,
I have an c# application which is used to send mail in contact us form.
System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required. Learn more at at System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode, String response) at System.Net.Mail.MailCommand.Send(SmtpConnection conn, Byte[] command, String from) at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception) at System.Net.Mail.SmtpClient.Send(MailMessage message) at quote.Button1_Click(Object sender, EventArgs e)
i tried different methods but did not work.
Please can anybody provide a solution for this.
Loading...