, ; , $to = ; , $subject = Hi!; , $body = DQHi,\n\nHow are you?DQ; , , $headers = array( , From => $from, , To => $to, , Subject => $subject , ); , , $smtp = Mail::factory(smtp, array( , host => ssl://smtp.gmail.com, , port => 465, , auth => true, , username => peteolson3150@gmail.com, , password => ******** , )); , , $mail = $smtp->send($to, $headers, $body); , , if (PEAR::isError($mail)) { , echo( . $mail->getMessage() . ); , } else { , echo(Message successfully sent!); , } ,
. $mail->getMessage() .
Message successfully sent!