From fc92fbdaab07c8caaab6ddd53d865010b7354b07 Mon Sep 17 00:00:00 2001 From: = Date: Sun, 8 Nov 2020 22:01:32 +1100 Subject: [PATCH] Fixes for tests --- app/Console/Commands/SendTestEmails.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/SendTestEmails.php b/app/Console/Commands/SendTestEmails.php index 99fcc8dbdf75..c775dce2f27d 100644 --- a/app/Console/Commands/SendTestEmails.php +++ b/app/Console/Commands/SendTestEmails.php @@ -159,9 +159,9 @@ class SendTestEmails extends Command ->setSubject($message['subject']) ->setBody($message['body']); - Mail::to(config('ninja.testvars.test_email'), 'Mr Test') - ->cc($cc_emails) - ->bcc($bcc_emails) + // Mail::to(config('ninja.testvars.test_email'), 'Mr Test') + // ->cc($cc_emails) + // ->bcc($bcc_emails) //->replyTo(also_available_if_needed) //->send(new TemplateEmail($email_builder, $user, $client)); }