林內嵌入圖像嘗試我的郵件正文中嵌入的圖像,但它作爲附件添加郵件正文的PHPMailer類
$mailer->Subject = APP_NAME . " - " . $name . " send you and Ad : " . $row['name'];
$mailer->IsHTML(true);
$mailer->AddEmbeddedImage('../images/namDiams.png', 'logoimg', 'namDimes.png');
//footer
$footer = "Regards<br/><br/>";
$footer .= '<table style="width: 95%">';
$footer .= '<tr>';
$footer .= '<td>';
$footer .= "<strong><span style='font-size: 15px'>NamDimes Team</span></strong><br/>
NamDimes<br/>
Contact Number: " . APP_CONTACT . "<br/>
Email: " . APP_EMAIL . "<br/>
Website: " . APP_WEBSITE . "<br/>";
$footer .= '</td>';
$footer .= '<td style="text-align:right">';
$footer .= '<img src=\"cid:logoimg\" />';
$footer .= '</td>';
$footer .= '</tr>';
$footer .= '</table>';
$mailer->Body = $body . $footer;
$mailer->AltBody="This is text only alternative body.";
$mailer->AddAttachment('../' . $row['image_path'], $row['name'] . ".jpg");
我已經否則設置一切都結束了,包括地址,郵件獲取發送,我想嵌入身體的徽標圖像作爲附件附加,任何人都知道爲什麼?
你的代碼似乎工作。一定要有最新的PHPmailer版本。順便說一句,恕我直言,你應該使用外部圖像,而不是嵌入式的。 – Ghigo 2013-03-20 08:43:04
我沒有讓你在externel圖像部分,這種新的 – Lappies 2013-03-20 08:47:17
只是簡單的'http://'鏈接。就像'http:// your.site.com/img/mypic.png' – Ghigo 2013-03-20 08:49:05