我正在尝试使用SwiftMailer在电子邮件正文中发送图像。我使用SwiftMailer来发送用于更改密码等的电子邮件。
我试图通过SwiftMailer的文档使用cid方法或embed方法。不幸的是,这些方法都不起作用。发送的电子邮件中仍然没有图像。
我使用此功能是为了发送电子邮件以更改用户密码。
public function sendResettingEmailMessage(UserInterface $user)
{
$template = $this->parameters['template']['resetting'];
$url = $this->router->generate('fos_user_resetting_reset', array('token' =>
$user->getConfirmationToken()), UrlGeneratorInterface::ABSOLUTE_URL);
$context = array(
'user' => $user,
'confirmationUrl' => $url,
);
$this->sendMessage($template, $context, $this->parameters['from_email']['resetting'], (string) $user->getEmail());
}
然后我使用此功能来创建电子邮件的消息:
protected function sendMessage($templateName, $context, $fromEmail,
$toEmail)
{
$template = $this->twig->load($templateName);
$subject = $template->renderBlock('subject', $context);
$textBody = $template->renderBlock('body_text', $context);
$htmlBody = '';
if ($template->hasBlock('body_html', $context)) {
$htmlBody = $template->renderBlock('body_html', $context);
}
$message = (new \Swift_Message())
->setSubject($subject)
->setFrom($fromEmail)
->setTo($toEmail)
->setBody(
'<html>' .
' <body>' .
' Here is an image <img src="' .
$message-
>embed(Swift_Image::fromPath('https://via.placeholder.com/350x150')) .
'" alt="Image" />' .
' Rest of message' .
' </body>' .
'</html>',
'text/html' // Mark the content-type as HTML
);
return $this->mailer->send($message);
}
这是我的email.html.twig:
{% trans_default_domain 'FOSUserBundle' %}
{% block subject %}
{%- autoescape false -%}
{{ 'registration.email.subject'|trans({'%username%': user.username,
'%confirmationUrl%': confirmationUrl}) }}
{%- endautoescape -%}
{% endblock %}
{% block body_text %}
{% autoescape false %}
{{ 'registration.email.message'|trans({'%username%': user.username,
'%confirmationUrl%': confirmationUrl}) }}
{% endautoescape %}
{% endblock %}
{% block body_html %}
{% endblock %}
我希望在我的电子邮件中,我可以在体内得到一个简单的占位符。 但是结果是此占位符从未出现在我的电子邮件中。 我只有带有文字的正文,没有图片。
如何在电子邮件正文中添加此占位符?
感谢您的答复。
答案 0 :(得分:0)
根据文档,您可以尝试以下方法吗:
gcc myfile.c -S -o myfile.s
然后请检查您的php.ini中是否设置了$message->attach(
Swift_Attachment::fromPath('https://via.placeholder.com/350x150')->setDisposition('inline')
)
allow_url_fopen