<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP();
// set mailer to use SMTP
$mail->Host = "smtp.163.com";
// specify main and backup server
$mail->SMTPAuth = true;
// turn on SMTP authentication
$mail->Username = "my_email@163.com"; //我的163邮箱email
// SMTP username
$mail->Password = "password"; //我的163邮箱密码// SMTP password
$mail->From = "my_email@163.com";
$mail->FromName = "Mailer";
// $mail->AddAddress("josh@example.net", "Josh Adams");
$mail->AddAddress("object@163.com");
// name is optional
// $mail->AddReplyTo("info@example.com", "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";
?>
附件(66KB) class.phpmailer.php附件(10.4KB) class.pop3.php附件(25KB) class.smtp.php--
FROM 175.18.166.*