Click here to Skip to main content
15,896,207 members

I need send mail using gmail with SMTP. But it shows an error

Flower@12 asked:

Open original thread
I am developing website in ASP.net,in that page Code was given below it works Localhost only not in Web server.What can i do?? Please Anyone can help me?


It shows an error,
Quote:
The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.


What I have tried:

My Code is,
 protected void btnSubmit_ServerClick(object sender, EventArgs e)
    {
        SmtpClient client = new SmtpClient();
        client.Host = "smtp.gmail.com"; //Set your smtp host address  
        client.Port = int.Parse("587"); // Set your smtp port address  
        client.DeliveryMethod = SmtpDeliveryMethod.Network;
        client.Credentials = new NetworkCredential("From@gmail.com", "****"); 
        client.EnableSsl = true; // Set SSL = true  
        MailMessage message = new MailMessage();
        message.To.Add("svrcrackers@gmail.com"); // Add Receiver mail Address  
        message.From = new MailAddress("From@gmail.com"); // Sender address  
        message.Subject = "EnQuiry From Customer";

        message.IsBodyHtml = true; //HTML email  
        message.Body = txtsubject.Text + "<br/>" + txtName.Text + "<br/>" + txtMobileNo.Text;

        client.Send(message);
        Response.Write("<script>alert('Submitted Successfully');</script>");
        Clear();
        }
Tags: C#

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900