【发布时间】:2017-03-05 22:56:24
【问题描述】:
我正在使用swiftmailer
发送电子邮件,我希望有相同的附件:
* HTML 版本 (text/html) 作为内联图像 (cid)
* 文字版(text/plain)作为附件
我正在 Ubuntu 上使用 Mozilla Thunderbird 45.3.0 测试电子邮件。
我一直在玩->setBody、->addPart、->embed 和->attach 方法,
但我总是破坏其中一个版本(即以纯文本形式获取电子邮件,我将消息视为 HTML 或文本)。
我的测试代码看起来像(当然有有效的 SMTP 地址和文件路径):
function swiftMail() {
require_once './vendor/swiftmailer/swiftmailer/lib/swift_required.php';
//Create the Transport
$transport = Swift_SmtpTransport::newInstance('smtp.mail.com', 25);
//Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);
// Create the message
$message = Swift_Message::newInstance()
// Give the message a subject
->setSubject('SwiftMailer test // ' . uniqid('', true))
// Set the From address with an associative array
->setFrom(array('first.name@mail.com' => 'Me'))
// Set the To addresses with an associative array
->setTo(array('first.name@mail.com' => 'Me'));
// attach the image as attachment
$message->attach(Swift_Attachment::fromPath('./path/to/file.png')->setFilename('cool_image.png'));
// set the email's body as plain text
$message->setBody('My amazing body in plain text', 'text/plain');
// add the email's HTML part to the message
$message->addPart(
'<!doctype html>' .
'<html>' .
' <head><meta charset="UTF-8"></head>' .
' <body>' .
' Here is an image <br />'.
' <img src="' . $message->embed(Swift_Image::fromPath('./path/to/file.png')->setFilename('inline_cool_image.png')) . '" alt="Inline Image" /><br />' .
' Rest of message' .
' </body>' .
'</html>',
'text/html' // Mark the content-type as HTML
);
// send the message
if (!$mailer->send($message, $failures))
{
echo "Failures:";
print_r($failures);
}
}
以下代码生成两个附件(可能没问题),只有纯文本版本可用(不太好)。
有没有办法让附件用作内联 HTML 图像源和纯文本电子邮件中的标准附件?
【问题讨论】:
标签: php email swiftmailer