Connecting Tech Pros Worldwide Forums | Help | Site Map

grabing email addresses

Taxi Driver
Guest
 
Posts: n/a
#1: Sep 30 '05
Does anyone know of a good script to gather email addresses from a
specific web site.

Thank you.

Philip Ronan
Guest
 
Posts: n/a
#2: Sep 30 '05

re: grabing email addresses


"Taxi Driver" wrote:
[color=blue]
> Does anyone know of a good script to gather email addresses from a
> specific web site.
>
> Thank you.[/color]

Don't do that. Nobody's interested in your spam.

--
phil [dot] ronan @ virgin [dot] net
http://vzone.virgin.net/phil.ronan/


Erwin Moller
Guest
 
Posts: n/a
#3: Sep 30 '05

re: grabing email addresses


Taxi Driver wrote:
[color=blue]
> Does anyone know of a good script to gather email addresses from a
> specific web site.
>
> Thank you.[/color]

Yes, try this one:

$tomail = "7sumari@mail.goo.ne.jp";
$subject = "Great new mailprogram! Try it now!";
$body = "Buy now the latest greatest mailprogram.";
while("spam" == "spam") {
mail($to, $subject, $body);
}


Regards,
Erwin Moller
Philip Ronan
Guest
 
Posts: n/a
#4: Sep 30 '05

re: grabing email addresses


"Erwin Moller" wrote:
[color=blue]
> Taxi Driver wrote:
>[color=green]
>> Does anyone know of a good script to gather email addresses from a
>> specific web site.
>>
>> Thank you.[/color]
>
> Yes, try this one:
>
> $tomail = "7sumari@mail.goo.ne.jp";
> $subject = "Great new mailprogram! Try it now!";
> $body = "Buy now the latest greatest mailprogram.";
> while("spam" == "spam") {
> mail($to, $subject, $body);
> }
>
>
> Regards,
> Erwin Moller[/color]

Hang on, shouldn't that be "mail($tomail, $subject, $body);"?

Maybe someone should try running this on their server just to make sure
there aren't any other bugs.

--
phil [dot] ronan @ virgin [dot] net
http://vzone.virgin.net/phil.ronan/


Erwin Moller
Guest
 
Posts: n/a
#5: Oct 3 '05

re: grabing email addresses


Philip Ronan wrote:
[color=blue]
> "Erwin Moller" wrote:
>[color=green]
>> Taxi Driver wrote:
>>[color=darkred]
>>> Does anyone know of a good script to gather email addresses from a
>>> specific web site.
>>>
>>> Thank you.[/color]
>>
>> Yes, try this one:
>>
>> $tomail = "7sumari@mail.goo.ne.jp";
>> $subject = "Great new mailprogram! Try it now!";
>> $body = "Buy now the latest greatest mailprogram.";
>> while("spam" == "spam") {
>> mail($to, $subject, $body);
>> }
>>
>>
>> Regards,
>> Erwin Moller[/color]
>
> Hang on, shouldn't that be "mail($tomail, $subject, $body);"?
>
> Maybe someone should try running this on their server just to make sure
> there aren't any other bugs.
>[/color]

Oh yes, you are right.

I disabled scripttimeout and tested it for the night, and your improved code
runs a lot better.
Thanks.

;-)

Regards,
Erwin Moller
Closed Thread