From 23e648db6956ef17f5803a83aac67501eb1a8b6f Mon Sep 17 00:00:00 2001 From: omair saleh Date: Fri, 13 Nov 2020 15:18:41 +0800 Subject: [PATCH] test sending booking do to email --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index a7d3f66b..949f1039 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -46,7 +46,7 @@ class Kernel extends ConsoleKernel $zip->close(); $attachment = storage_path('tempdir').'/'.$zipname; - Mail::raw( 'This is an automatically generated email – please do not reply to it. If you have any queries kindly contact our admin team through Wechat.\r\n\r\nAttention to VT Admin team:\r\n\r\nKindly refer to the attachment for our DAILY DO COMPILATION '.Carbon::today()->format('d-m-Y').'.\r\n\r\n\r\nCIEF WORLDWIDE SDN BHD', function($message) use ($attachment){ + Mail::raw( "This is an automatically generated email – please do not reply to it. If you have any queries kindly contact our admin team through Wechat.\r\n\r\nAttention to VT Admin team:\r\n\r\nKindly refer to the attachment for our DAILY DO COMPILATION ".Carbon::today()->format('d-m-Y').".\r\n\r\n\r\nCIEF WORLDWIDE SDN BHD", function($message) use ($attachment){ $message->from('exchange@cief-malaysia.com'); $message->to(['uldvstar@gmail.com', 'pm@cief-malaysia.com', 'hasan@cief-malaysia.com', 'hasanakbar27@gmail.com', 'pmwong2019@gmail.com']); $message->subject('CIEF DAILY DO COMPILATION '.Carbon::today()->format('d-m-Y'));