SMTP Address for sending email

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Fary4u
    Contributor
    • Jul 2007
    • 273

    SMTP Address for sending email

    Hi

    Any body here to figer it out the SMTP Address which don't need any thing you Internet Connection provider

    it's just send it automaticly don't need any user name & password it's freely send email using free smtp address ?

    Thx in advance
  • sicarie
    Recognized Expert Specialist
    • Nov 2006
    • 4677

    #2
    Originally posted by Fary4u
    Hi

    Any body here to figer it out the SMTP Address which don't need any thing you Internet Connection provider

    it's just send it automaticly don't need any user name & password it's freely send email using free smtp address ?

    Thx in advance
    Ummmm, huh?

    You need internet access (given by a provider) to do anything on the internet.

    Other than that, you can google search smtp to find more about that protocol...

    Comment

    • wassimdaccache
      New Member
      • Apr 2007
      • 222

      #3
      Man it might be the same as the proxy in my network it is the same try it. Maybe it works


      cheers

      Comment

      • Arulmurugan
        New Member
        • Jan 2008
        • 90

        #4
        Originally posted by Fary4u
        Hi

        Any body here to figer it out the SMTP Address which don't need any thing you Internet Connection provider

        it's just send it automaticly don't need any user name & password it's freely send email using free smtp address ?

        Thx in advance

        It is possible to send email without using user name and password.,but one thing i've not completely understand your question..., expline me, one sec i will try to help more.

        Regards,
        Arul

        Comment

        • dvgoswami
          New Member
          • Mar 2009
          • 2

          #5
          Originally posted by Fary4u
          Hi

          Any body here to figer it out the SMTP Address which don't need any thing you Internet Connection provider

          it's just send it automaticly don't need any user name & password it's freely send email using free smtp address ?

          Thx in advance
          Hi,

          it's simple
          Download dll from.

          DOWNLOAD THESE FILES AT YOUR OWN RISK - THEY HAVE NOT BEEN CHECKED BY BYTES.COM



          //Now prepare your message.
          MailMessage mail = new MailMessage();
          mail.To.Add(&qu ot;someone@some domail.com&quot ;);
          mail.From = new MailAddress(&qu ot;tome@somedom ain.com");
          mail.Subject = "Send email without SMTP server";
          mail.Body = "Yep, its workin!!!!&quot ;;

          //Send message
          string domain = mail.To[0].Address.Substr ing(mail.To[0].Address.IndexO f('@') + 1);
          SendSMTP.SmtpDi rect.SmtpServer = SendSMTP.DnsLoo kUp.GetMXRecord s(domain)[0];
          SendSMTP.SmtpDi rect.Send(mail) ;

          Have look at ::url to personal webpage removed per site useage policies:: for complete details.


          Done!

          Tx.
          Dipak.
          Last edited by sicarie; Apr 22 '09, 02:13 AM. Reason: personal webpages are not allowed; unverified downloads marked

          Comment

          • NeoPa
            Recognized Expert Moderator MVP
            • Oct 2006
            • 32634

            #6
            Not so simple.

            More and more SMTP servers (MX in DNS) are using reverse DNS lookup to ensure the sender is from where they say they are.

            Not 100% reliable, I know, but it does block this sort of usage.

            Comment

            Working...