Acest mesaj a fost trimis in mod automat de catre server la solicitarea unui client al site-ului dumneavoastra.";
//create the mail message
MailMessage mail = new MailMessage();
//set the addresses
mail.From = new MailAddress("web@prodach.ro");
mail.To.Add(new MailAddress("info@prodach.ro"));
//mail.ReplyTo = new MailAddress((string)Request.Form["Email"]);
//set the content
mail.Subject = "Formular Contact - www.prodach.ro";
mail.Body = body;
mail.IsBodyHtml = true;
//send the message
SmtpClient smtp = new SmtpClient();
smtp.Send(mail);
}%>
Prodach