"; $to = "Joe "; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $host = "ssl://banshee.mxlogin.com"; $port = "465"; $username = "jim@example.com"; $password = "xxxxxxx"; $headers = array ('From' => $from, 'To' => $to, 'Subject' => $subject); $smtp = Mail::factory('smtp', array ('host' => $host, 'port' => $port, 'auth' => true, 'username' => $username, 'password' => $password)); $mail = $smtp->send($to, $headers, $body); if (PEAR::isError($mail)) { echo("

" . $mail->getMessage() . "

"); } else { echo("

Message successfully sent!

"); } ?>