Quote Originally Posted by Gav0 View Post
Cant you change the script to use smtp?

something like add a function to the end of index.php

Code: 
function leechmail($email_completed, $name, $post) {
 $from = "AutoUploader";
 
 $host = "mail.example.com";
 $username = "smtp_username";
 $password = "smtp_password";
 
 $headers = array ('From' => $from,
   'To' => $email_complete,
   'Subject' => $name);
 $smtp = Mail::factory('smtp',
   array ('host' => $host,
     'auth' => true,
     'username' => $username,
     'password' => $password));
 
 $mail = $smtp->send($to, $headers, $post);
}
Code: 
and change
                 mail($email_completed, $name, $post);
to
                 leechmail($email_completed, $name, $post);
I havent tested it though its from about.com

not worked