This commit is contained in:
parent
40f2366c9d
commit
8fc89088e4
@ -27,9 +27,6 @@ public function handle()
|
||||
}
|
||||
}
|
||||
|
||||
// public function action_contact()
|
||||
// {}
|
||||
|
||||
public function action_mail_test()
|
||||
{
|
||||
$users = Contact::query()->get();
|
||||
@ -69,7 +66,7 @@ public function action_push_missing()
|
||||
continue;
|
||||
}
|
||||
$contact = $contacts[$offset];
|
||||
// $item->update(['status' => Testdrive::STATUS_PUBLISHED, 'contact_id' => $contact->id, 'contact_info' => $contact->toArray()]);
|
||||
$item->update(['status' => Testdrive::STATUS_PUBLISHED, 'contact_id' => $contact->id, 'contact_info' => $contact->toArray()]);
|
||||
if (!isset($sendList[$contact->id])) {
|
||||
$sendList[$contact->id] = [$item];
|
||||
} else {
|
||||
@ -83,7 +80,7 @@ public function action_push_missing()
|
||||
$contact = $contacts->firstWhere('id', $contactId);
|
||||
$this->info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items));
|
||||
info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items));
|
||||
// $contact->notify(new TestdirveNotification($items));
|
||||
$contact->notify(new TestdirveNotification($items));
|
||||
}
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ public function via(object $notifiable): array
|
||||
|
||||
public function toMail(object $notifiable): MailMessage
|
||||
{
|
||||
info('===== TestdirveNotification::toMail', ['items' => $this->items]);
|
||||
$table = new HtmlString(view('bydauto::mail.testdrive', ['items' => $this->items])->render());
|
||||
return (new MailMessage())
|
||||
->subject("预约试驾线索通知")
|
||||
|
Loading…
Reference in New Issue
Block a user