PDA

View Full Version : There's any Way to Dowload a PHP file?



MATRIX
July 2nd, 2003, 21:00
I want to dowload a Mail Script to Send 30 Messages from one Web to test my Sendmail, can i dowload with a Program? :mad:

awayfromforum
July 2nd, 2003, 22:10
No you cant, but its pretty easy to create one yourself.

http://php.net/mail, read up on that


<php
for(x = 0; x < 30; x++) {
// mail code here
}
?>


that should do the trick, and send 30 messages to anywhere you want.

bloodyveins
July 3rd, 2003, 09:33
yes, you can. however, for security reason, it's worthy not telling it.

MATRIX
July 4th, 2003, 21:45
[QUOTE]Originally posted by X-Istence
[B]


<php
for(x = 0; x < 30; x++) {
// mail code here
}
?>



Mail code is this?

$to = "a@b.c";
$from = "b@c.a";
$subject = "subject";
$body = "<html><other HTML tags />charset here for logical hebrew</html>";

$headers="Content-Type:text/html;CHARSET=iso-8859-8-i\r\n";
$headers.="From:".$from."\r\n";