|
13 | 13 |
|
14 | 14 | namespace Eventum\Mail;
|
15 | 15 |
|
| 16 | +use Date_Helper; |
16 | 17 | use DateTime;
|
17 | 18 | use DomainException;
|
18 | 19 | use Eventum\Mail\Helper\DecodePart;
|
|
26 | 27 | use Zend\Mail\Header\AbstractAddressList;
|
27 | 28 | use Zend\Mail\Header\Cc;
|
28 | 29 | use Zend\Mail\Header\ContentType;
|
| 30 | +use Zend\Mail\Header\Date; |
29 | 31 | use Zend\Mail\Header\From;
|
30 | 32 | use Zend\Mail\Header\GenericHeader;
|
31 | 33 | use Zend\Mail\Header\HeaderInterface;
|
@@ -512,33 +514,63 @@ protected function getSubject()
|
512 | 514 | }
|
513 | 515 |
|
514 | 516 | /**
|
515 |
| - * Set the message subject header value, return Subject object |
| 517 | + * Set the message subject header value |
516 | 518 | *
|
517 |
| - * @return Subject |
| 519 | + * @param string $subject |
| 520 | + * @return $this |
518 | 521 | */
|
519 | 522 | public function setSubject($subject)
|
520 | 523 | {
|
521 |
| - return $this->getSubject()->setSubject($subject); |
| 524 | + $this->getSubject()->setSubject($subject); |
| 525 | + |
| 526 | + return $this; |
522 | 527 | }
|
523 | 528 |
|
524 | 529 | /**
|
525 | 530 | * Set To: header
|
526 | 531 | *
|
527 | 532 | * @param string|AddressList $value
|
| 533 | + * @return $this |
528 | 534 | */
|
529 | 535 | public function setTo($value)
|
530 | 536 | {
|
531 | 537 | $this->setAddressListHeader('To', $value);
|
| 538 | + |
| 539 | + return $this; |
532 | 540 | }
|
533 | 541 |
|
534 | 542 | /**
|
535 | 543 | * Set From: header
|
536 | 544 | *
|
537 |
| - * @param string $value |
| 545 | + * @param string|AddressList $value |
| 546 | + * @return $this |
538 | 547 | */
|
539 | 548 | public function setFrom($value)
|
540 | 549 | {
|
541 | 550 | $this->setAddressListHeader('From', $value);
|
| 551 | + |
| 552 | + return $this; |
| 553 | + } |
| 554 | + |
| 555 | + /** |
| 556 | + * Set Date: header |
| 557 | + * |
| 558 | + * @param string $value |
| 559 | + * @return $this |
| 560 | + */ |
| 561 | + public function setDate($value = null) |
| 562 | + { |
| 563 | + $value = $value ?: Date_Helper::getRFC822Date(time()); |
| 564 | + |
| 565 | + // can not update 'Date' header, so remove it |
| 566 | + if ($this->headers->has('Date')) { |
| 567 | + $this->headers->removeHeader('Date'); |
| 568 | + } |
| 569 | + |
| 570 | + $header = new Date($value); |
| 571 | + $this->headers->addHeader($header); |
| 572 | + |
| 573 | + return $this; |
542 | 574 | }
|
543 | 575 |
|
544 | 576 | /**
|
@@ -697,6 +729,9 @@ public function stripHeaders()
|
697 | 729 | *
|
698 | 730 | * IMPORTANT: it should not contain any multipart changes,
|
699 | 731 | * as then everything will blow up as it is not parsed again.
|
| 732 | + * |
| 733 | + * @param string|Mime\Message $content |
| 734 | + * @return $this |
700 | 735 | */
|
701 | 736 | public function setContent($content)
|
702 | 737 | {
|
@@ -734,10 +769,12 @@ public function setContent($content)
|
734 | 769 | }
|
735 | 770 | $this->content = $message->getBodyText();
|
736 | 771 |
|
737 |
| - return; |
| 772 | + return $this; |
738 | 773 | }
|
739 | 774 |
|
740 | 775 | $this->content = $content;
|
| 776 | + |
| 777 | + return $this; |
741 | 778 | }
|
742 | 779 |
|
743 | 780 | /**
|
|
0 commit comments