Move conversion of mail header array into string to (PHP-)MailTransport.

This commit is contained in:
Markus Birth 2016-08-04 16:38:56 +02:00
parent 9eef404735
commit 9c09108076
2 changed files with 5 additions and 16 deletions

View File

@ -57,20 +57,6 @@ class MailOutput extends GenericOutput
$this->headers[$key] = $value;
}
/**
* Returns a header section (as string) of all currently set headers.
*
* @return string Header section.
*/
public function getHeaders()
{
$all_headers = '';
foreach ($this->headers as $key=>$value) {
$all_headers .= $key . ': ' . $value . "\r\n";
}
return $all_headers;
}
/**
* Sets mail headers. If headers contain a Subject: line, the subject is set from that.
*
@ -100,7 +86,7 @@ class MailOutput extends GenericOutput
// TODO: Check if any recipients in the first place
$this->transport->setRecipients($recipients);
$this->transport->setSubject($this->subject);
$this->transport->setHeaders($this->getHeaders());
$this->transport->setHeaders($this->headers);
$this->transport->setContent($mailbody);
return $this->transport->send();
}

View File

@ -26,7 +26,10 @@ class MailTransport implements TransportInterface
public function setHeaders($headers)
{
$this->headers = $headers;
$this->headers = '';
foreach ($headers as $key=>$value) {
$this->headers .= $key . ': ' . $value . "\r\n";
}
}
public function transmit()