我正在使用mailgun並希望將圖像添加到我的簡報中。 現在我這樣做:Mailgun內聯圖像,它是如何工作的?
$mg->sendMessage($domain, array('from' => '[email protected]',
'to' => '[email protected]',
'subject' => 'Developers Mail Test MijnProjectgroep batch #1',
'text' => 'Hallo %recipient_fname%,
'html' => '<html>
<img style="display:block;" class="img1" src="cid:header-clip.png" width="600" height="64" />
</html>',
array('inline' => '@.././images/newsletter/header-clip.png'),
'o:tracking-opens' => 'yes'));
但沒有圖像加載,而我收到的簡訊。 與上面的腳本文件是在:
根 - >/MailGun/
的圖像被在:
根 - > /圖像/通訊/
也試過: @ ../.. /圖像/通訊/報頭-clip.png
該文檔是在這裏:
http://documentation.mailgun.com/user_manual.html?highlight=html#sending-via-api
我做錯了什麼?
我有同樣的問題。你最終得出這個結論嗎? – Erin