- Migrating to SymfonyMailer from Swift

This commit is contained in:
Dave M. 2023-05-22 16:03:46 +00:00
parent 34b850c780
commit cbfc87e12d
4 changed files with 101 additions and 43 deletions

View File

@ -0,0 +1,46 @@
<?php
namespace TheBugs\Email;
trait EmailInfoTrait
{
protected /*stringable*/ $from;
protected string|\Stringable|array $to;
protected string|\Stringable|array $cc;
protected string|\Stringable|array $bcc;
protected array $attachments = [];
protected EmailConfiguration $emailConfiguration;
public function setFrom(string|\Stringable|array $from) : MailerInterface
{
$this->from = $from;
return $this;
}
public function setTo(string|\Stringable|array $to) : MailerInterface
{
$this->to = $to;
return $this;
}
public function setCC(string|\Stringable|array $cc) : MailerInterface
{
$this->cc = $cc;
return $this;
}
public function setBCC(string|\Stringable|array $bcc) : MailerInterface
{
$this->bcc = $bcc;
return $this;
}
}

View File

@ -6,9 +6,9 @@ interface MailerInterface
{
public function send(string $subject, string $message, bool $html = true) : bool;
public function setFrom($from) : self;
public function setFrom(string|\Stringable|array $from) : self;
public function attach(\Swift_Attachment $attachment) : self;
public function attach(mixed $attachment) : self;
public function setTo($to) : self;
public function setTo(string|\Stringable|array $to) : self;
}

View File

@ -4,20 +4,10 @@ namespace TheBugs\Email;
class SwiftMailer implements MailerInterface
{
protected $emailConfiguration;
use EmailInfoTrait;
protected $transport;
protected /*stringable*/ $from;
protected /*stringable|array*/ $to;
protected /*stringable|array*/ $cc;
protected /*stringable|array*/ $bcc;
protected array $attachments = [];
public function __construct(EmailConfiguration $configuration) {
$this->emailConfiguration = $configuration;
@ -44,38 +34,10 @@ class SwiftMailer implements MailerInterface
return ( new \Swift_Mailer($this->transport) )->send($swiftObj);
}
public function attach(\Swift_Attachment $attachment) : self
public function attach(mixed $attachment) : self
{
$this->attachments[] = $attachment;
return $this;
}
public function setFrom(/*stringable|array*/ $from) : MailerInterface
{
$this->from = $from;
return $this;
}
public function setTo(/*stringable|array*/ $to) : MailerInterface
{
$this->to = $to;
return $this;
}
public function setCC(/*stringable|array*/ $cc) : MailerInterface
{
$this->cc = $cc;
return $this;
}
public function setBCC(/*stringable|array*/ $bcc) : MailerInterface
{
$this->bcc = $bcc;
return $this;
}
}

View File

@ -0,0 +1,50 @@
<?php
namespace TheBugs\Email;
use Symfony\Component\Mailer\{ Mailer, Transport };
use Symfony\Component\Mime\Email;
class SymfonyMailer implements MailerInterface
{
use EmailInfoTrait;
public Mailer $mailer;
public function __construct(EmailConfiguration $configuration) {
$this->emailConfiguration = $configuration;
$this->mailer = new Mailer(Transport::fromDsn(spritf("smtp://%s:%s@%s:%d", $this->emailConfiguration->smtpUsername, $this->emailConfiguration->smtpPassword, $this->emailConfiguration->smtpHost, $this->emailConfiguration->smtpPort)));
}
public function send(string $subject, string $message, bool $html = true) : bool
{
$email = ( new Email() )
->subject($subject)
->from($this->from)
->to(...( (array)$this->to ))
->cc(...($this->cc ?? []))
->bcc(...($this->bcc ?? []));
if ($html) {
$email->html($message);
}
else {
$email->text($message);
}
foreach ($this->attachments as $path) {
$email->attachFromPath($path);
}
$this->attachments = [];
return $this->mailer->send($email);
}
public function attach(mixed $attachment) : self
{
$this->attachments[] = $attachment;
return $this;
}
}