pon*_*lus 3 php email swiftmailer
我正在使用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);
}
}
Run Code Online (Sandbox Code Playgroud)
以下代码导致两个附件(可能没问题)并且只有纯文本版本可用(这不好)。
有没有办法让附件用作内嵌 HTML 图像源和纯文本电子邮件中的标准附件?
我遇到了完全相同的问题,并且能够通过添加明文部分addPart()而不是setBody().
$message->addPart('My amazing body in plain text', 'text/plain');
Run Code Online (Sandbox Code Playgroud)
根据您的示例,它将是:
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->addPart('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);
}
}
Run Code Online (Sandbox Code Playgroud)
在 macOS 上使用 SwiftMailer 5.4.4 版、Thunderbird 45.5.0 和 Gmail 网络界面进行测试。