|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- namespace Grav\Plugin\Email;
-
- use Symfony\Component\Mime\Email as SymfonyEmail;
-
- class Message
- {
- /** @var SymfonyEmail */
- protected $email;
-
- public function __construct() {
- $this->email = new SymfonyEmail();
- }
-
- public function subject($subject): self
- {
- $this->email->subject($subject);
- return $this;
- }
-
- public function setSubject($subject): self
- {
- $this->subject($subject);
- return $this;
- }
-
- public function to($to): self
- {
- $this->email->to($to);
- return $this;
- }
-
- public function from($from): self
- {
- $this->email->from($from);
- return $this;
- }
-
- public function cc($cc): self
- {
- $this->email->cc($cc);
- return $this;
- }
-
- public function bcc($bcc): self
- {
- $this->email->bcc($bcc);
- return $this;
- }
-
- public function replyTo($reply_to): self
- {
- $this->email->replyTo($reply_to);
- return $this;
- }
-
- public function text($text): self
- {
- $this->email->text($text);
- return $this;
- }
-
- public function html($html): self
- {
- $this->email->html($html);
- return $this;
- }
-
- public function attachFromPath($path): self
- {
- $this->email->attachFromPath($path);
- return $this;
- }
-
- public function embedFromPath($path): self
- {
- $this->email->embedFromPath($path);
- return $this;
- }
-
- public function reply_to($reply_to): self
- {
- $this->replyTo($reply_to);
- return $this;
- }
-
- public function setFrom($from): self
- {
- $this->from($from);
- return $this;
- }
-
- public function setTo($to): self
- {
- $this->to($to);
- return $this;
- }
-
- public function getEmail(): SymfonyEmail
- {
- return $this->email;
- }
- }
|