Completed
Push — master ( 0da43a...054cbe )
by Mahmoud
03:30
created
app/Port/Email/Abstracts/MailsAbstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
         // check if sending emails is enabled and if this is not running a testing environment
59 59
         if (Config::get('mail.enabled')) {
60
-            Mail::queue('EmailTemplates.' . $this->template, $data, function ($message) {
60
+            Mail::queue('EmailTemplates.' . $this->template, $data, function($message) {
61 61
                 $message->from($this->fromEmail, $this->fromName);
62 62
                 $message->to($this->toEmail, $this->toName)
63 63
                     ->subject($this->subject);
Please login to merge, or discard this patch.