Skip to content

Commit

Permalink
fix: rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rubnogueira committed Aug 21, 2023
1 parent ebf9124 commit ef6a073
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/bundles/EmailBundle/Helper/MailHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ class MailHelper
private $embedImagesReplaces = [];

public function __construct(MauticFactory $factory, \Swift_Mailer $mailer, $from = null, $bcc = null)

{
$this->factory = $factory;
$this->mailer = $mailer;
Expand All @@ -270,7 +269,7 @@ public function __construct(MauticFactory $factory, \Swift_Mailer $mailer, $from
$systemBccEmail = $factory->getParameter('mailer_default_bcc');
$systemFromEmail = $factory->getParameter('mailer_from_email');
$systemReplyToEmail = $factory->getParameter('mailer_reply_to_email');
$systemFromName = $this->cleanName(
$systemFromName = $this->cleanName(
$factory->getParameter('mailer_from_name')
);
$this->setDefaultFrom($from, [$systemFromEmail => $systemFromName]);
Expand Down

0 comments on commit ef6a073

Please sign in to comment.