Hi Thanks for ur reply and I gone throgh as u given link, I am inserted following fields such:
MailAddress SendFrom = new MailAddress(txtFrom.Text); //name@yahoo.com
MailAddress SendTo = new MailAddress(txtTo.Text);
mail@yahoo.com
MailAddress SendCC = new MailAddress(txtcc.Text);
cc@yahoo.com
MailAddress SendBcc = new MailAddress(txtBcc.Text);
bcc@yahoo.com
MailMessage MyMessage = new MailMessage(SendFrom, SendTo);
MyMessage.CC.Add(SendCC);
MyMessage.Bcc.Add(SendBcc);
MyMessage.Subject = txtSubject.Text;
MyMessage.Body = txtBody.Text;
SmtpClient emailClient = new SmtpClient(txtsmtpServer.Text); systemIDAddress(10.1.11.144)
emailClient.Send(MyMessage);
lblMessage.Text = "Message has been sent";
Here message is displaying as meseeage sent successfully. But mail is not goin to TOMAIL ID.
pls help me inthis regard. can I change any things in that...
Thanks,
Basha...