翻訳とテンプレート サービスを挿入するサービスを作成しました。コントローラーからメールを送信するために使用します。
メール本文の生成に使用される twig テンプレートが翻訳されていないことを除いて、すべて正常に動作します。
サービスのテンプレート化では、呼び出し元のコントローラーの要求ロケールを使用せず、すべてのアプリに設定されているデフォルトのロケールを使用していると思います。挿入されたテンプレート サービスに使用するようにロケールを設定するにはどうすればよいですか?
私のコードがあります:
class Mailer
{
private $mailer;
private $templating;
private $siteUrl;
private $fromName;
private $fromAddress;
private $translator;
private $doctrine;
/**
* @param \Swift_Mailer $mailer
* @param EngineInterface $templating
* @param RegistryInterface $doctrine
* @param Translator $translator
* @param string $siteUrl
* @param string $fromName
* @param string $fromAddress
*/
public function __construct(RegistryInterface $doctrine, \Swift_Mailer $mailer, EngineInterface $templating, Translator $translator, $siteUrl = "", $fromName = "", $fromAddress = "")
{
$this->mailer = $mailer;
$this->templating = $templating;
$this->siteUrl = $siteUrl;
$this->fromName = $fromName;
$this->fromAddress = $fromAddress;
$this->doctrine = $doctrine;
$this->translator = $translator;
}
public function sendIndentConfirm(Indent $indent)
{
$customer = $indent->getCustomer();
$purchases = $indent->getPurchases();
$subject = $this->translator->trans("Confirmation of your order");
$customerBody = $this->templating->render('ZamaECommerceBundle:Mailer:indentCustomerConfirm.html.twig', array(
"indent" => $indent,
"subject" => $subject
));
$this->sendEmail(
$customerBody,
$subject,
array(
$customer->getUsername() => $customer->getFirstName() . " " . $customer->getLastName()
)
);
}