Use PEAR :: Mail , you can specify an SMTP server with it.
$headers = array ('From' => $from, 'To' => $to, 'Subject' => $subject); $obj = Mail::factory ('smtp', array ('host' => $host, 'port' => $port)); $obj->send ($to, $headers, $body);
source share