function getEmailsToSend()
 {
     $rep = $this->getResponse('text');
     $srv = new EmailService();
     $rep->content = $srv->nbEmailsToSend($this->param('id'));
     return $rep;
 }