gugarthur
(usa Fedora)
Enviado em 08/02/2010 - 17:11h
<?php
require_once "Mail.php";
$from = "Remetente <remetente@remetente.com.br>";
$to = "Destinatario <destinatario@destinatario.com.br>";
$subject = "Ola, amiguinho!";
$body = "Olha eu aqui.";
$host = "smtps.servidor.com.br";
$username = "remetente@remetente.com.br";
$password = "dsfjksdfsdfjk";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'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>");
}
?>