init
All checks were successful
Deploy to Production / deploy (push) Successful in 14s

This commit is contained in:
珂珂 2024-11-15 17:17:44 +08:00
parent 54f77de5cf
commit fa461d00c3
5 changed files with 28 additions and 9 deletions

View File

@ -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;
}

View File

@ -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 <br>电话:<a href='tel:%s'>%s</a>", $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 <br>电话:<a href='tel:%s'>%s</a>", $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 [];
}
}

View File

@ -0,0 +1,12 @@
<table border="1" width="100%">
<tr>
<th width="40%">姓名</th>
<th>电话</th>
</tr>
@foreach($data as $item)
<tr>
<td>{{ $item->name }}</td>
<td>{{ $item->mobile }}</td>
</tr>
@endforeach
</table>