first version

This commit is contained in:
Bastian Allgeier
2019-01-13 23:17:34 +01:00
commit 01277f79f2
595 changed files with 82913 additions and 0 deletions

187
kirby/src/Email/Email.php Executable file
View File

@@ -0,0 +1,187 @@
<?php
namespace Kirby\Email;
use Kirby\Toolkit\Properties;
use Kirby\Toolkit\V;
use Exception;
/**
* Wrapper for email libraries
*
* @package Kirby Email
* @author Bastian Allgeier <bastian@getkirby.com>,
* Nico Hoffmann <nico@getkirby.com>
* @link http://getkirby.com
* @copyright Bastian Allgeier
* @license MIT
*/
class Email
{
use Properties;
protected $attachments;
protected $body;
protected $bcc;
protected $cc;
protected $from;
protected $replyTo;
protected $isSent = false;
protected $subject;
protected $to;
protected $transport;
public function __construct(array $props = [], bool $debug = false)
{
$this->setProperties($props);
if ($debug === false) {
$this->send();
}
}
public function attachments(): array
{
return $this->attachments;
}
public function body(): Body
{
return $this->body;
}
public function bcc(): array
{
return $this->bcc;
}
public function cc(): array
{
return $this->cc;
}
protected function defaultTransport(): array
{
return [
'type' => 'mail'
];
}
public function from(): string
{
return $this->from;
}
public function isHtml()
{
return $this->body()->html() !== null;
}
public function isSent(): bool
{
return $this->isSent;
}
public function replyTo(): string
{
return $this->replyTo;
}
protected function resolveEmail($email = null, bool $multiple = true)
{
if ($email === null) {
return $multiple === true ? [] : '';
}
if (is_array($email) === false) {
$email = [$email];
}
foreach ($email as $address) {
if (V::email($address) === false) {
throw new Exception(sprintf('"%s" is not a valid email address', $address));
}
}
return $multiple === true ? $email : $email[0];
}
public function send(): bool
{
return $this->isSent = true;
}
protected function setAttachments($attachments = null)
{
$this->attachments = $attachments ?? [];
return $this;
}
protected function setBody($body)
{
if (is_string($body) === true) {
$body = ['text' => $body];
}
$this->body = new Body($body);
return $this;
}
protected function setBcc($bcc = null)
{
$this->bcc = $this->resolveEmail($bcc);
return $this;
}
protected function setCc($cc = null)
{
$this->cc = $this->resolveEmail($cc);
return $this;
}
protected function setFrom(string $from)
{
$this->from = $this->resolveEmail($from, false);
return $this;
}
protected function setReplyTo(string $replyTo = null)
{
$this->replyTo = $this->resolveEmail($replyTo, false);
return $this;
}
protected function setSubject(string $subject)
{
$this->subject = $subject;
return $this;
}
protected function setTo($to)
{
$this->to = $this->resolveEmail($to);
return $this;
}
protected function setTransport($transport = null)
{
$this->transport = $transport;
return $this;
}
public function subject(): string
{
return $this->subject;
}
public function to(): array
{
return $this->to;
}
public function transport(): array
{
return $this->transport ?? $this->defaultTransport();
}
}