在PHP代码中发送邮件的简单示例

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

 <?php
include("class.phpmailer.php");
$mail = new PHPMailer();
$mail->From = 'your email address@.com';
$mail->FromName = 'HTML Blog';
$mail->Host = 'host name';
$mail->Mailer = 'smtp';
$mail->Subject = 'subject';
$mail->IsHTML(true);
$body = 'Hello<br/>How are you ?';
$textBody = 'Hello, how are you ?';
$mail->Body = $body;
$mail->AltBody = $textBody;
$mail->AddAddress('reciepents full email address');
if(!$mail->Send())
    echo 'There has been a mail error !';