and sometimes gets to the inbox like it should be.
the code
protected void Button1_Click(object sender, EventArgs e)
{
string MailEmpId = TextBox4.Text;
if (MailEmpId != "" || MailEmpId.Length > 0)
{
SmtpClient smtpClient = new SmtpClient();
System.Net.Mail.MailMessage mailMessage = new System.Net.Mail.MailMessage();
try
{
mailMessage.To.Add(MailEmpId);
}
catch
{
ImageERR.Visible = true;
MailOK_Img.Visible = false;
}
if (Copies.Text != "" ...
Go to the complete details ...