// Pear Mail Library
require_once "Mail.php";
$from = '<from.gmail.com>';//حساب المُرسل
$to = '<to.yahoo.com>';//المُرسل إليه
$subject = 'Hi!';//موضوع الرسالة
$body = "Hi,\n\nHow are you?";//نص الرسالة
$headers = array(
'From' => $from,
'To' => $to,
'Subject' => $subject
);
$smtp = Mail::factory('smtp', array(
'host' => 'ssl://smtp.gmail.com',
'port' => '465',
'auth' => true,
'username' => 'johndoe@gmail.com',
//الايميل الخاص بك
'password' => 'passwordxxx'
//كلمة المرور الخاصة بحسابك في جي مايل
));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo('<p>' . $mail->getMessage() . '</p>');
} else {
echo('<p>Message successfully sent!</p>');
// اضهار رسالة تعلمك أن الرسالة أرسلت
}