関数ファイル名を次のように作成しました
<?php
use Ens\NewBundle\Controller\Services\MyMailers as MyMailers;
function NotificationOnSignUp($z)
{
$x=new MyMailers;
$x->setToloc($z['to']);
$x->setFromloc('ucerturohit@gmail.com');
$x->setSubject('Wonderful world');
$x->setBody('Hello world');
$z=$x->mail();
if($z==1)
$name='success';
else
$name='failed';
return $this->render('EnsNewBundle:Email:ind.html.twig',array('name'=>$name));
// return $z;
}
このファイルはコントローラーにありませんが、このファイルで小枝ファイルをレンダリングするか、この小枝ファイルをメールの本文として設定します。これどうやってするの??