Пример #1
0
 /**
  * @return string
  */
 public function ServiceMailto()
 {
     $sTo = \trim($this->oHttp->GetQuery('to', ''));
     if (!empty($sTo) && \preg_match('/^mailto:/i', $sTo)) {
         $oAccount = $this->oActions->GetAccountFromSignMeToken();
         if ($oAccount) {
             $this->oActions->SetMailtoRequest($sTo);
         }
     }
     $this->oActions->Location('./');
     return '';
 }