How to send anonymous email? and how to check if the server block the sending?

Discussion in 'C#' started by oralkali, Oct 7, 2008.

  1. oralkali

    oralkali New Member

    Joined:
    Oct 6, 2008
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    I try to send some emails from Gmail server and if i send over 100 its block the sending the the software collapse..

    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);
    So, how to check it? and to send it anonymously? :undecided

    If someone plzz can help me plzz talk with me in AIM: oralkali93
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice