示例#1
0
 public function sendShareNotification(User $by, Share $share)
 {
     $template = 'HomefinanceBundle:mailer:administration_shared.txt.twig';
     $context = array('by' => $by, 'share' => $share);
     $this->sendMessage($template, $context, $share->getUser()->getEmail());
 }