From fa461d00c3a68a3408a814ac7465dca539c7a40c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8F=82=E7=8F=82?= Date: Fri, 15 Nov 2024 17:17:44 +0800 Subject: [PATCH] init --- .../bydauto/src/Commands/BYDAutoCommand.php | 3 ++- .../Notifications/TestdirveNotification.php | 22 ++++++++++++------- .../{notice => mail}/salesleads-day.blade.php | 0 .../{notice => mail}/salesleads.blade.php | 0 .../bydauto/views/mail/testdrive.blade.php | 12 ++++++++++ 5 files changed, 28 insertions(+), 9 deletions(-) rename packages/bydauto/views/{notice => mail}/salesleads-day.blade.php (100%) rename packages/bydauto/views/{notice => mail}/salesleads.blade.php (100%) create mode 100644 packages/bydauto/views/mail/testdrive.blade.php diff --git a/packages/bydauto/src/Commands/BYDAutoCommand.php b/packages/bydauto/src/Commands/BYDAutoCommand.php index 4e7b7dd..2b725bd 100644 --- a/packages/bydauto/src/Commands/BYDAutoCommand.php +++ b/packages/bydauto/src/Commands/BYDAutoCommand.php @@ -96,8 +96,9 @@ public function action_push2contact() // 开始发送 foreach ($sendList as $contactId => $items) { - $contact = $contacts->find($contactId); + $contact = $contacts->firstWhere('id', $contactId); $this->info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items)); + $contact->notify(new TestdirveNotification($items)); } return Command::SUCCESS; } diff --git a/packages/bydauto/src/Notifications/TestdirveNotification.php b/packages/bydauto/src/Notifications/TestdirveNotification.php index 95610e2..c3b1d61 100644 --- a/packages/bydauto/src/Notifications/TestdirveNotification.php +++ b/packages/bydauto/src/Notifications/TestdirveNotification.php @@ -2,7 +2,6 @@ namespace BYDAuto\Notifications; -use BYDAuto\Models\Testdrive; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; @@ -12,7 +11,7 @@ class TestdirveNotification extends Notification { use Queueable; - public function __construct(protected Testdrive $model) {} + public function __construct(protected $items) {} public function via(object $notifiable): array { @@ -21,19 +20,26 @@ public function via(object $notifiable): array public function toMail(object $notifiable): MailMessage { - $text = sprintf("姓名:%s
电话:%s", $this->model->name, $this->model->mobile, $this->model->mobile); - $text = new HtmlString($text); + $table = new HtmlString(view('bydauto::mail.testdrive', ['items' => $this->items])->render()); return (new MailMessage()) ->subject("预约试驾线索通知") - ->line("收到一条新的试驾预约信息") - ->line($text) + ->line("收到新的试驾预约信息:") + ->line($table) ->line("=====") ->salutation("祝,工作愉快!"); + + // $text = sprintf("姓名:%s
电话:%s", $this->model->name, $this->model->mobile, $this->model->mobile); + // $text = new HtmlString($text); + // return (new MailMessage()) + // ->subject("预约试驾线索通知") + // ->line("收到一条新的试驾预约信息") + // ->line($text) + // ->line("=====") + // ->salutation("祝,工作愉快!"); } public function toArray(object $notifiable): array { - return [ - ]; + return []; } } diff --git a/packages/bydauto/views/notice/salesleads-day.blade.php b/packages/bydauto/views/mail/salesleads-day.blade.php similarity index 100% rename from packages/bydauto/views/notice/salesleads-day.blade.php rename to packages/bydauto/views/mail/salesleads-day.blade.php diff --git a/packages/bydauto/views/notice/salesleads.blade.php b/packages/bydauto/views/mail/salesleads.blade.php similarity index 100% rename from packages/bydauto/views/notice/salesleads.blade.php rename to packages/bydauto/views/mail/salesleads.blade.php diff --git a/packages/bydauto/views/mail/testdrive.blade.php b/packages/bydauto/views/mail/testdrive.blade.php new file mode 100644 index 0000000..b3585d4 --- /dev/null +++ b/packages/bydauto/views/mail/testdrive.blade.php @@ -0,0 +1,12 @@ + + + + + + @foreach($data as $item) + + + + + @endforeach +
姓名电话
{{ $item->name }}{{ $item->mobile }}