Symfony アプリに新しいコマンドを作成しました。
このコマンドでは、FOS bundle から mailer として電子メールを送信 するサービスを呼び出します。
私の問題は、メールを送信するためにメール本文がコンソールに表示されることです。
msg mailer
メソッドはコマンドからはうまく機能すると言いたいです。
ここで私のコマンド:
class ReminderCommand extends Command
{
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->container = $this->getApplication()->getKernel()->getContainer();
# the mailer service works fine out the command
$mailer = $this->container->get('mailer');
$mailer->sendMsg(...);
$text = ' => mail sent';
$output->writeln($text);
}
}
助けてください
ありがとう
サム