Creating email message with html body, which contains query string with "src" name in some url, throws FileNotFoundException.
$message = new Nette\Mail\Message();
$message->setHtmlBody("<a href='test.php?src=SOME'>some link</a>");
throws FileNotFoundException with message "Unable to read file /SOME"
Because it completely crashes sending particular email, it's serious bug.
Maybe there are another use cases with src string in html, which can also hit this bug.