I have written a simple php mailing script using mail peer. My code is as follows- <?php require_once "Mail.php"; $from = "TAnvir Sender <bhonest_4ever2007@yahoo.com>"; $to = "Tonu Recipient <tanvirtonu@yahoo.com>"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $host = "ssl://smtp.mail.yahoo.com"; //$host = "smtp.mail.yahoo.com"; $port='465'; $username = "bhonest_4ever2007"; $password = "abcdefg"; $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("<p>" . $mail->getMessage() . "</p>"); } else { echo("<p>Message successfully sent!</p>"); } ?> PHP: Now I mgetting this error- Pls help me.I m using an installer of Apache, MySQL and PHP for Windows called XAMPP 1.6.4 which is a Apache distribution for windows.I dont know how to recompile php with ssl. Bcos all I did to install php is I just installed Xampp installer.It did the rest.Help me.