我正在尝试使用Swiftmailer创建一个html电子邮件,并在html位中嵌入一个图像。如果我只发送带有纯文本和html版本的邮件,那么html版本就会显示正常,带有损坏的图像图标(当然)。但是,如果我嵌入图像,我只看到纯文本版本,并且html版本和图像都显示为附件。
这种方法看起来有什么问题或突出吗?
电子邮件标题:
Message-ID: <10c312442e249148aa9e87d70681885c@swift.generated>
Date: Sun, 15 Feb 2015 16:04:55 +0100
Subject: Subject here
From: Fastaval <email@xyz.dk>
To: email@example.com
MIME-Version: 1.0
Content-Type: multipart/related;
boundary="_=_swift_v4_1424012695_eef1c60fde0ddd3f8a9ad82190b115f8_=_"
纯文本标题:
--_=_swift_v4_1424012695_eef1c60fde0ddd3f8a9ad82190b115f8_=_
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
Html标题:
--_=_swift_v4_1424012695_eef1c60fde0ddd3f8a9ad82190b115f8_=_
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
嵌入式图片标题:
--_=_swift_v4_1424012695_eef1c60fde0ddd3f8a9ad82190b115f8_=_
Content-Type: image/jpeg; name=Banner15.jpg
Content-Transfer-Encoding: base64
Content-Disposition: inline; filename=Banner15.jpg
Content-ID: <8e75618e41588e7e5b6953f0c319e262@swift.generated>
带图像的html位:
<div><img alt=3D"banner" src=3D"cid:8e75618e41588e7e5=
b6953f0c319e262@swift.generated"/></div>
我正在生成这样的电子邮件:
$this->_message = Swift_Message::newInstance()
->setFrom($from)
->setTo($to)
->setSubject($subject)
->setBody($message, 'text/plain');
$html = '<div><img alt="banner" src="banner-src"/></div>';
$html = str_replace('banner-src', $this->_message->embed(Swift_Image::fromPath('Banner15.jpg')), $html);
$this->_message->addPart($html, 'text/html');
答案 0 :(得分:1)
我遇到了同样的问题并最终做到了这一点:
省略text / plain正文,text / html部分显示正常。
答案 1 :(得分:0)
该消息较旧,但可以帮助您解决此问题。
您可以对邮件进行附件,并为其提供文件名。 文档摘录(swiftmailer doc):
$message->attach(Swift_Attachment::fromPath('/path/to/image.jpg')->setFilename('cool.jpg'));
您在html中的img的src中调用文件名。
希望它将对某人有所帮助。