メールを送信するための次のコードがあります
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 $x->render('EnsNewBundle:Email:ind.html.twig', array('name' => $name));
// return $z;
}
ind.html.twig
テンプレートファイルをメール本文に設定したい。この機能はコントローラーにはなく、サービスを使用したくありません。
これどうやってするの ?