Tema: Phpmailer
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/06/2007, 11:59
usermax
(Desactivado)
 
Fecha de Ingreso: diciembre-2006
Mensajes: 529
Antigüedad: 17 años, 5 meses
Puntos: 11
Re: Phpmailer

Cuando descargues el PHPMAILER tiene un archivo README con un ejemplo claro y sencillo de cómo usarlo.

Código PHP:
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host "smtp1.example.com;smtp2.example.com"// specify main and backup server
$mail->SMTPAuth true// turn on SMTP authentication
$mail->Username "jswan"// SMTP username
$mail->Password "secret"// SMTP password
$mail->From "[email protected]";
$mail->FromName "Mailer";
$mail->AddAddress("[email protected]""Josh Adams");
$mail->AddAddress("[email protected]"); // name is optional
$mail->AddReplyTo("[email protected]""Information");
$mail->WordWrap 50// set word wrap to 50 characters
$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments
$mail->AddAttachment("/tmp/image.jpg""new.jpg"); // optional name
$mail->IsHTML(true); // set email format to HTML
$mail->Subject "Here is the subject";
$mail->Body "This is the HTML message body <b>in bold!</b>";
$mail->AltBody "This is the body in plain text for non-HTML mail clients";
if(!
$mail->Send())
{
echo 
"Message could not be sent. <p>";
echo 
"Mailer Error: " $mail->ErrorInfo;
exit;
}
echo 
"Message has been sent";
?>
Es cuestión de ponerse a investigar un poco.

Suerte...