about sending smtp mail

  • Thread starter Thread starter miladhatam
  • Start date Start date
M

miladhatam

i have a web project that sending a mail is a necessary work
but i have an error
this is my page
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Web.Mail;
using System.Net.Configuration;

public partial class mail : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string from = "(e-mail address removed)";
string to = "(e-mail address removed)";
string subject = "Hi!";
string body = "How are you?";
SmtpMail.SmtpServer = "mail.farazedanesh.org";

SmtpMail.Send(from, to, subject, body);
{
and web.config
<configuration>
<system.net>
<mailSettings>
<smtp deliveryMethod="network">
<network
host="mail.farazedanesh.org"

userName="(e-mail address removed)"
password="xxxxx"
/>
</smtp>
</mailSettings>
</system.net>
</configuration>



}my error

The server rejected one or more recipient addresses. The server
response was: 550 <[email protected]> No such user here
 
i have a web project that sending a mail is a necessary work
but i have an error
this is my page

8< snip
}my error

The server rejected one or more recipient addresses. The server
response was: 550 <[email protected]> No such user here

That means exactly what the error message says. There is no such user.
You are trying to send a message to an address that doesn't exist.
 
Back
Top