Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config/environment')
-rw-r--r--config/environment/test.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/config/environment/test.php b/config/environment/test.php
index bfd8e54460..13c5c390cd 100644
--- a/config/environment/test.php
+++ b/config/environment/test.php
@@ -120,15 +120,15 @@ return array(
}
}),
- array('Test.Mail.send', function (\Zend_Mail $mail) {
+ array('Test.Mail.send', function (\PHPMailer\PHPMailer\PHPMailer $mail) {
$outputFile = PIWIK_INCLUDE_PATH . '/tmp/' . Common::getRequestVar('module', '') . '.' . Common::getRequestVar('action', '') . '.mail.json';
- $outputContent = str_replace("=\n", "", $mail->getBodyHtml($textOnly = true) ?: $mail->getBodyText($textOnly = true));
+ $outputContent = str_replace("=\n", "", $mail->Body ?: $mail->AltBody);
$outputContent = str_replace("=0A", "\n", $outputContent);
$outputContent = str_replace("=3D", "=", $outputContent);
$outputContents = array(
- 'from' => $mail->getFrom(),
- 'to' => $mail->getRecipients(),
- 'subject' => $mail->getSubject(),
+ 'from' => $mail->From,
+ 'to' => $mail->getAllRecipientAddresses(),
+ 'subject' => $mail->Subject,
'contents' => $outputContent
);
file_put_contents($outputFile, json_encode($outputContents));