And how to send it anonymous? its now work me, what im trying..
Im using System.Net, System.Net.Mail..... in brief
Code:
SmtpClient MailClient = new SmtpClient("smtp.gmail.com", 25);
MailClient.EnableSsl = true;
MailClient.Credentials = new NetworkCredential(user, password);
Msg.From = new MailAddress("anonymous@gmail.com");
Msg.To.Add(new MailAddress(TheMailThatGotTheMsg));
Msg.Subject = "Subject";
Msg.Body = "Body";
MailClient.Send(Msg);
If someone plzz can help me plzz talk with me in AIM: oralkali93
