Changeset View
Changeset View
Standalone View
Standalone View
src/applications/metamta/message/PhabricatorMailEmailMessage.php
| Show All 9 Lines | final class PhabricatorMailEmailMessage | ||||
| private $toAddresses = array(); | private $toAddresses = array(); | ||||
| private $ccAddresses = array(); | private $ccAddresses = array(); | ||||
| private $headers = array(); | private $headers = array(); | ||||
| private $attachments = array(); | private $attachments = array(); | ||||
| private $subject; | private $subject; | ||||
| private $textBody; | private $textBody; | ||||
| private $htmlBody; | private $htmlBody; | ||||
| public function newMailMessageEngine() { | |||||
| return new PhabricatorMailEmailEngine(); | |||||
| } | |||||
| public function setFromAddress(PhutilEmailAddress $from_address) { | public function setFromAddress(PhutilEmailAddress $from_address) { | ||||
| $this->fromAddress = $from_address; | $this->fromAddress = $from_address; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getFromAddress() { | public function getFromAddress() { | ||||
| return $this->fromAddress; | return $this->fromAddress; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 78 Lines • Show Last 20 Lines | |||||