Differential D9375 Diff 24738 src/applications/metamta/adapter/PhabricatorMailImplementationTestAdapter.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/metamta/adapter/PhabricatorMailImplementationTestAdapter.php
| Show First 20 Lines • Show All 58 Lines • ▼ Show 20 Lines | public function addHeader($header_name, $header_value) { | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function setBody($body) { | public function setBody($body) { | ||||
| $this->guts['body'] = $body; | $this->guts['body'] = $body; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function setSubject($subject) { | public function setHTMLBody($html_body) { | ||||
| $this->guts['subject'] = $subject; | $this->guts['html-body'] = $html_body; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function setIsHTML($is_html) { | public function setSubject($subject) { | ||||
| $this->guts['is-html'] = $is_html; | $this->guts['subject'] = $subject; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function supportsMessageIDHeader() { | public function supportsMessageIDHeader() { | ||||
| return $this->config['supportsMessageIDHeader']; | return $this->config['supportsMessageIDHeader']; | ||||
| } | } | ||||
| public function send() { | public function send() { | ||||
| Show All 29 Lines | |||||