problem in sending mail
-
i m trying to send a mail in asp.net but it is throwing
The server rejected one or more recipient addresses. The server response was: 550 neetu@djsw.com No such user here
error.... i searched on google but didn't get the solution.... someone tell the solution...
-
i m trying to send a mail in asp.net but it is throwing
The server rejected one or more recipient addresses. The server response was: 550 neetu@djsw.com No such user here
error.... i searched on google but didn't get the solution.... someone tell the solution...
Miss Maheshwari wrote:
No such user here
Which part of that error message is unclear? The email address which you are trying to send doesn't exist in the server.
Navaneeth How to use google | Ask smart questions
-
i m trying to send a mail in asp.net but it is throwing
The server rejected one or more recipient addresses. The server response was: 550 neetu@djsw.com No such user here
error.... i searched on google but didn't get the solution.... someone tell the solution...
Error Clearly Says, there is no mail id as you given.
cheers, Abhijit
-
Miss Maheshwari wrote:
No such user here
Which part of that error message is unclear? The email address which you are trying to send doesn't exist in the server.
Navaneeth How to use google | Ask smart questions
but user exists...i tried with neetumahe@gmail.com too and many more existing user but same error....
-
but user exists...i tried with neetumahe@gmail.com too and many more existing user but same error....
Have you successfully authenticated the server? Do you mind showing the code which you used to send mail?
Navaneeth How to use google | Ask smart questions
-
Have you successfully authenticated the server? Do you mind showing the code which you used to send mail?
Navaneeth How to use google | Ask smart questions
yeah sure i can show no problem
objMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", "2");
objMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate",2);
objMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", "25");
objMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout", 10);
SmtpMail.SmtpServer = "74.53.152.202";
objMail.To = txtmail.Text.Trim();
objMail.From = "info@g2o.in";
objMail.Body = body;
objMail.Subject = "New Password";try
{
SmtpMail.Send(objMail);
} -
yeah sure i can show no problem
objMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", "2");
objMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate",2);
objMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", "25");
objMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout", 10);
SmtpMail.SmtpServer = "74.53.152.202";
objMail.To = txtmail.Text.Trim();
objMail.From = "info@g2o.in";
objMail.Body = body;
objMail.Subject = "New Password";try
{
SmtpMail.Send(objMail);
}Check this[^]. I can't see where you are specifying the password and user details for authenticating the server.
Navaneeth How to use google | Ask smart questions
-
Check this[^]. I can't see where you are specifying the password and user details for authenticating the server.
Navaneeth How to use google | Ask smart questions
now i m getting this error
The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available
-
now i m getting this error
The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available
Well, I don't know what caused this issue. What I can tell you is to re-ensure the following points 1 - Check the SMTP server and it is accessible 2 - Check the port 3 - Make sure the address you specified in
From
exists in the server. 4 - User credentials supplied are correct.Navaneeth How to use google | Ask smart questions
-
i m trying to send a mail in asp.net but it is throwing
The server rejected one or more recipient addresses. The server response was: 550 neetu@djsw.com No such user here
error.... i searched on google but didn't get the solution.... someone tell the solution...
I think the problem is that you are not giving the recipient address correctly. Like the address mentioned: neetu@djsw.com does not exist
-
I think the problem is that you are not giving the recipient address correctly. Like the address mentioned: neetu@djsw.com does not exist
bilal_yousaf_hussain wrote:
neetu@djsw.com does not exist
it exists... and as i told i tried many existing ids