这是 swiftmailer 所说的,尽管 symfony 4 文档说我们可以发送这样的 TemplatedEmail 对象,但这是不可能的:
传递给 Swift_Mailer::send() 的参数 1 必须是 Swift_Mime_SimpleMessage 的实例,给定的 Symfony\Bridge\Twig\Mime\TemplatedEmail 实例,在 /home/tk/html/src/Service/MailService.php 的第 103 行调用
在我的 MailService 中发送我的 html 邮件的代码:
// ...
use Swift_Mailer;
use Symfony\Bridge\Twig\Mime\TemplatedEmail;
class MailService {
// ...
public function sendOwnerPollsAction( Owner $foundOwner ) {
// anti spam , limit to every minute TODO
// $lastSend = $admin_user->getRequestedPollsDate();
// $now = new \DateTime();
// if ( date_diff( $lastSend, $now ) < 60 ) {
// // too soon!
// die( 'too soon!' );
// }
// $admin_user->setRequestedPollsDate( $now );
// $em->persist( $admin_user );
// $em->flush();
$titleEmail = 'Framadate | Mes sondages';
$templateVars = [
'owner' => $foundOwner,
'title' => $titleEmail,
'email_template' => 'emails/owner-list.html.twig',
];
$email = ( new TemplatedEmail() )
->from( 'ne-pas-repondre@framadate-api.cipherbliss.com' )
->to( new Address( $foundOwner->getEmail() ) )
->subject( $titleEmail )
->htmlTemplate( $templateVars[ 'email_template' ] )
->context( $templateVars );
// send email
return $this->mailer->send( $email );
}
symfony 4 的 swiftmailer 文档说我们可以像那样发送邮件,并且 templatedemail 扩展了电子邮件。 https://symfony.com/doc/4.3/mailer.html#creating-sending-messages 所以我不知道我们如何发送模板化的 html 电子邮件。
包裹:
"symfony/framework-bundle": "4.3.*",
"symfony/swiftmailer-bundle": "^3.4",
"php": "^7.1.3",
手掌心