標籤:phpmailer 發郵件例子亂碼發送h
//phpmailer代碼工具類以及傳到我的csdn“我的資源”中,可以帶這裡去下載</span>
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">';require_once("class.phpmailer.php"); //下載的檔案必須放在該檔案所在目錄$mail = new PHPMailer(); //建立郵件發送類$mail->CharSet = "UTF-8"; //設定郵件編碼,預設ISO-8859-1,如果發中文此項必須設定為 UTF-8 $mail->Encoding = "base64"; $mail->IsSMTP(); // 使用SMTP方式發送$mail->Host = "smtp.163.com"; // 您的企業郵局網域名稱$mail->SMTPAuth = true; // 啟用SMTP驗證功能$mail->Username = "[email protected]"; // 郵局使用者名稱(請填寫完整的email地址)$mail->Password = "leyangjun518518"; // 郵局密碼$mail->Port = 25;//$mail->SMTPDebug = 0; //調試開啟 1開啟 0關閉 $mail->isHTML(true); // 設定以HTML格式發送$mail->AddAttachment("img/phpMailer.docx");// 添加附件$mail->AddAttachment("img/leyangjun.jpg", "new.jpg");// 添加附件,並指定名稱$mail->From = "[email protected]"; //發送人的地址(也就是你的郵箱)$mail->FromName = "樂楊俊"; //寄件者的姓名//$mail->AddAddress($address, "親");//添加收件者(地址,暱稱) $mail->addAddress('[email protected]'); //收郵件人的郵箱$mail->Subject = "測試郵件系統"; //郵件的標題$mail->Body = '<table border="1" cellspacing="0" cellpadding="0"> <tr bgcolor="yellow"> <td>姓名</td> <td>年齡</td> <td>地址</td> </tr> <tr> <td>樂楊俊</td> <td>24</td> <td>江西省</td> </tr> <tr><td colspan="3"><a href="http://www.w3"><img src="http://www.sofavi.com/wx/img/leyangjun.jpg" alt="lekey" /></a></td></tr> </table>'; //郵件內容$mail->AltBody = "This is the body in plain text for non-HTML mail clients"; //附加資訊,可以省略if (!$mail->Send()) { echo "失敗了也 <p>"; echo "失敗原因: " . $mail->ErrorInfo; exit;}echo "成功了也 OK";</span>