Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function sendConfirmationEmail(ShipmentInterface $shipment) |
||
41 | { |
||
42 | /** @var OrderInterface $order */ |
||
43 | $order = $shipment->getOrder(); |
||
44 | |||
45 | $this->emailSender->send(Emails::SHIPMENT_CONFIRMATION, [$order->getCustomer()->getEmail()], [ |
||
46 | 'shipment' => $shipment, |
||
47 | 'order' => $order, |
||
48 | ]); |
||
49 | } |
||
50 | } |
||
51 |