Skip to content

Commit

Permalink
Merge pull request #93 from matomo-org/html-email
Browse files Browse the repository at this point in the history
Use setWrappedHtmlBody() for html emails.
  • Loading branch information
diosmosis authored Jan 6, 2019
2 parents 2fe05a4 + 3abe26e commit 8b21858
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tasks.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function notifyQueueSize()
$mail->setDefaultFromPiwik();
$mail->addTo($emailsToNotify);
$mail->setSubject('Queued Tracking - queue size has reached your threshold');
$mail->setBodyHtml($message);
$mail->setWrappedHtmlBody($message);
$mail->send();
}
}
Expand Down
4 changes: 2 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "QueuedTracking",
"version": "3.3.1",
"version": "3.3.2",
"description": "Scale your large traffic Piwik service by queuing tracking requests in Redis for better performance. ",
"theme": false,
"keywords": ["tracker", "tracking", "queue", "redis"],
"license": "GPL v3+",
"homepage": "http://piwik.org",
"require": {
"piwik": ">=3.5.0,<4.0.0-b1"
"piwik": ">=3.8.0-rc2,<4.0.0-b1"
},
"support": {
"email": "[email protected]",
Expand Down

0 comments on commit 8b21858

Please sign in to comment.