does anyone have any scripts for instant email submission probally bftp might have it but just asking..
Do u mean like to send a script through php? if so here's a lil basic script i wrote: Code: <html> <head> <title>Send mail</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <?php $to = $_POST['to']; $from = $_POST['from']; $subject = $_POST['subject']; $content = $_POST['content']; if (isset ($_POST['submit'])) { if ( (empty ($to)) or (empty ($subject)) or (empty ($from)) or (empty ($content)) ) { echo "<fieldset><legend>Error</legend>Enter fields correctly</fieldset>"; } else { echo "<fieldset><legend>Sent</legend>The email has been sent</fieldset>"; mail($to, $subject, $content, "FROM: $from"); } } echo "<div align='center'><fieldset><legend>Send Email</legend><form action='mail.php' method='post'> To: <input type='text' name='to' size='60' maxsize='60' value='$to' /></p> Subject: <input type='text' name='subject' size='60' maxsize='60' value='$subject' /></p> From: <input type='text' name='from' size='60' maxsize='60' value='$from' /></p> Subject: <textarea name='content' cols='100' rows='10' value='$content' ></textarea></p> <input type='submit' name='submit' value='Send' /></p></form></fieldset></div>"; ?> </body> </html> A working example can be seen here: http://www.codedfx.com/examples/mail.php