class.phpmailer.php & class.smtp.php ?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi friend,

anybody tried class.phpmailer.php & class.smtp.php to
sendmail?

I try to connect to mail.yahoo.com, not working.

Regards,
Scott

<?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 = "from@xxxxxxxxxxx";
$mail->FromName = "Mailer";
$mail->AddAddress("josh@xxxxxxxxxxx", "Josh Adams");
$mail->AddAddress("ellen@xxxxxxxxxxx");               
  // name is optional
$mail->AddReplyTo("info@xxxxxxxxxxx", "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";
?>



__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Soap]     [Kernel Newbies]     [Yosemite]     [Yosemite Campsites]

  Powered by Linux