Advertisement
ASP_Volume2 Internet/ HTML #43035

Fake E-Mailer

This application shows how to send E-Mails with the Delphi Indy SMTP component. Please do not use this application for abuse purposes, it was only made for education and to help others better learn Delphi. I will not be responsible for any one using this software to send fake e-mails to any one. This program connects to the hotmail SMTP server to send all messages, this can of course be changed once you download the source code.

AI

Riepilogo AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Codice sorgente
original-source
/*<br>
*@author steve gricci <[email protected]><br>
*@access public<br>
*@skill beginner<br>
*@site www.deepcode.net<br>
*/<br><br>
//put at begining of file<br><br>
function utime (){<br>
  $time = explode( " ", microtime());<br>
  $usec = (double)$time[0];<br>
  $sec = (double)$time[1];<br>
  return $sec + $usec;<br>
}<br>
 $start = utime(); <br><br>
//put at end of page before /body and /html tags<br><br>
$end = utime(); $run = $end - $start; echo "Page expelled in " . substr($run, 0, 5) . " secs.";<br> 
//Nothing after this
Upload
Commenti originali (3)
Recuperato da Wayback Machine