fixed #4
This commit is contained in:
parent
1063bcc421
commit
a0f9c90083
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue