Email sent option added in mail notification

This commit is contained in:
jitendra 2019-05-17 16:05:30 +05:30
parent 7931baab28
commit afb0b99723
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class Order {
public function sendNewShipmentMail($shipment) public function sendNewShipmentMail($shipment)
{ {
try { try {
if (! $shipment->email_sent) if ($shipment->email_sent)
return; return;
Mail::queue(new NewShipmentNotification($shipment)); Mail::queue(new NewShipmentNotification($shipment));