Symfony Mailer - 从 SwiftMailer 迁移 addPart

Symfony Mailer - Migrate addPart from SwiftMailer

我正在从我的应用程序中的 SwiftMailer 迁移到 Symfony Mailer。

如何将 SwiftMailer 的 addPart 方法迁移到 Symfony Mailer?在我的例子中,内容类型是 text/plain

->addPart('Plain text content', 'text/plain');

使用

要使用 Symfony Mailer 设置电子邮件的纯文本部分,您可以使用

$email->text("...")

有关完整参考,请参阅 https://symfony.com/doc/current/mailer.html#message-contents

您只需将其迁移到

->text('Plain text content')

https://symfony.com/doc/current/mailer.html#message-contents

你可以这样使用

$email->from($fromEmail)
->to($toEmail)
->html($html_content)  /// for html content
->text($text_content)  /// for text content 
->replyTo($email_info['reply_email'])
->subject($email_info['subject']);

希望这会有所帮助。如果您不需要 html 内容或文本内容,请注释该行。