Currently the specified email is simply prepended by "mailto:" but we might add spam protection. = Examples = mailto:foo@bar.tld
Inheritance: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper
 /**
  * @test
  */
 public function renderPrependsEmailWithMailto()
 {
     $this->viewHelper->initialize();
     $actualResult = $this->viewHelper->render('*****@*****.**');
     $this->assertEquals('mailto:some@email.tld', $actualResult);
 }