phpMailer 發郵件例子、亂碼、發送html內容介紹

來源:互聯網
上載者:User

標籤: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>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.