Compare commits
No commits in common. "f0b2ab10fdc5ec6a94913ef670800ba98dba7185" and "1e7ac5db47ed6046adf4db5b9126a99a4eb41c59" have entirely different histories.
f0b2ab10fd
...
1e7ac5db47
@ -1,46 +0,0 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
@ -6,9 +6,9 @@ interface MailerInterface
|
||||
{
|
||||
public function send(string $subject, string $message, bool $html = true) : bool;
|
||||
|
||||
public function setFrom(string|\Stringable|array $from) : self;
|
||||
public function setFrom($from) : self;
|
||||
|
||||
public function attach(mixed $attachment) : self;
|
||||
public function attach(\Swift_Attachment $attachment) : self;
|
||||
|
||||
public function setTo(string|\Stringable|array $to) : self;
|
||||
public function setTo($to) : self;
|
||||
}
|
@ -4,10 +4,20 @@ namespace TheBugs\Email;
|
||||
|
||||
class SwiftMailer implements MailerInterface
|
||||
{
|
||||
use EmailInfoTrait;
|
||||
protected $emailConfiguration;
|
||||
|
||||
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;
|
||||
|
||||
@ -34,10 +44,38 @@ class SwiftMailer implements MailerInterface
|
||||
return ( new \Swift_Mailer($this->transport) )->send($swiftObj);
|
||||
}
|
||||
|
||||
public function attach(mixed $attachment) : self
|
||||
public function attach(\Swift_Attachment $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;
|
||||
}
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user