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

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

Thread Status:
Not open for further replies.
  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 i can check it? and to send it anonymously? :undecided
     
  2. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
Thread Status:
Not open for further replies.

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