We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b7f792 commit 1659ed6Copy full SHA for 1659ed6
Manager/MailManager.php
@@ -298,7 +298,7 @@ private function parseBodyUrl($body)
298
foreach ($matches as $match) {
299
$url = $match[2];
300
301
- if (strpos($url, 'http:') === false) {
+ if (strpos($url, 'http:') === false && strpos($url, 'https:') === false) {
302
$newUrl = $request->getSchemeAndHttpHost() . $url;
303
$body = str_replace($url, $newUrl, $body);
304
}
0 commit comments