hi
plese help me
i had developed a web application.. in my application i need to sent a mail to customer.. if i run my application in local system its the mail was sent successfully. but after hosting the application the mail was not sent
this is my code
SmtpClient client = new SmtpClient();
client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.EnableSsl = true;
client.Host = "smtp.gmail.com";
client.Port = 587;
System.Net.NetworkCredential credentials =
new System.Net.NetworkCredential("
[email protected]", "suresh57");
client.UseDefaultCredentials = false;
client.Credentials = credentials;
MailMessage msg = new MailMessage();
msg.From = new MailAddress("
[email protected]");
msg.To.Add(new MailAddress(to));
string BccAddress = "
[email protected]";
msg.Bcc.Add(BccAddress);
msg.Subject = subject;
msg.Body = body;
try
{
client.Send(msg);
res = true;
}
catch (Exception ex)
{
}