(using System.Net.Mail )
hi
i have this code :
its just tell me this message :
Failure sending mail
<edit by mod: replaced email addresses with fake ones for your privacy>
hi
i have this code :
Code:
MailMessage myMail = new MailMessage("mail@mail.com", "mail@mail.com", "My Report.", "See the file.");
SmtpClient myccc = new SmtpClient("localhost");
myccc.Credentials = CredentialCache.DefaultNetworkCredentials;
myccc.Send(myMail);
Failure sending mail
<edit by mod: replaced email addresses with fake ones for your privacy>
Comment