This commit is contained in:
systopia 2016-01-06 16:43:22 +01:00
parent 1063bcc421
commit a0f9c90083
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@ class CRM_Civiproxy_Mailer {
* mending the URLs contained * mending the URLs contained
*/ */
function send($recipients, $headers, $body) { function send($recipients, $headers, $body) {
CRM_CiviProxy_Mailer::mendURLs($headers); foreach ($headers as &$header) {
CRM_CiviProxy_Mailer::mendURLs($header);
}
CRM_CiviProxy_Mailer::mendURLs($body); CRM_CiviProxy_Mailer::mendURLs($body);
$this->mailer->send($recipients, $headers, $body); $this->mailer->send($recipients, $headers, $body);
} }