我尝试在我的Symfony Sonata套装中提供服务,以便在创建订单后立即向特定人员发送电子邮件。发送电子邮件的人是用户选择批准订单的人。
我尝试关注service container documentation on Symfony's website,但对我来说感觉太不完整了。我希望看到一个完整的例子而不仅仅是几个片段。
到目前为止,这是我的电子邮件服务类;
<?php
namespace Qi\Bss\BaseBundle\Lib\PurchaseModule;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Security\Core\Authorization\AuthorizationChecker;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
use Doctrine\ORM\EntityManager;
/**
*
*/
class Notifier
{
/**
* Service container
* @var type
*/
private $serviceContainer;
public function notifier($subject, $from, $to, $body) {
$message = \Swift_Message::newInstance()
->setSubject($subject)
->setFrom($from)
->setTo($to)
->setBody($body)
;
$this->serviceContainer->get('mailer')->send($message);
}
/**
* Sets the sales order exporter object
* @param type $serviceContainer
*/
public function setServiceContainer($serviceContainer)
{
$this->serviceContainer = $serviceContainer;
}
}
我的services.yml文件中的服务如下所示;
bss.pmod.order_notifier:
class: Qi\Bss\BaseBundle\Lib\PurchaseModule\Notifier
arguments: ["@mailer"]
当我在控制器操作中调用该服务时,我使用此行;
$this->get('bss.pmod.order_notifier')->notifier();
错误我正在获得状态;
注意:未定义的属性: 齐\ BSS \ FrontendBundle \控制器\ PmodOrderController :: $的ServiceContainer
就像我之前说的那样,我看过service container documentation,但我无法理解。
有人可以帮我一个很好的完整例子来解释一切吗?
答案 0 :(得分:4)
您的服务类中不需要setServiceContainer
方法,而应该让__construct
接受邮件程序作为第一个参数:
class Notifier
{
protected $mailer;
public function __construct($mailer)
{
$this->mailer = $mailer;
}
public function notifier() {
$message = \Swift_Message::newInstance()
->setSubject('Simon Koning')
->setFrom('noreply@solcon.nl')
->setTo('simon@simonkoning.co.za')
->setBody('The quick brown fox jumps over the lazy dog.')
;
$this->mailer->send($message);
}
}