This commit is contained in:
parent
54f77de5cf
commit
fa461d00c3
@ -96,8 +96,9 @@ public function action_push2contact()
|
|||||||
|
|
||||||
// 开始发送
|
// 开始发送
|
||||||
foreach ($sendList as $contactId => $items) {
|
foreach ($sendList as $contactId => $items) {
|
||||||
$contact = $contacts->find($contactId);
|
$contact = $contacts->firstWhere('id', $contactId);
|
||||||
$this->info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items));
|
$this->info("发送试驾数据给联系人 {$contact->id} 总数 " . count($items));
|
||||||
|
$contact->notify(new TestdirveNotification($items));
|
||||||
}
|
}
|
||||||
return Command::SUCCESS;
|
return Command::SUCCESS;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
namespace BYDAuto\Notifications;
|
namespace BYDAuto\Notifications;
|
||||||
|
|
||||||
use BYDAuto\Models\Testdrive;
|
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
@ -12,7 +11,7 @@ class TestdirveNotification extends Notification
|
|||||||
{
|
{
|
||||||
use Queueable;
|
use Queueable;
|
||||||
|
|
||||||
public function __construct(protected Testdrive $model) {}
|
public function __construct(protected $items) {}
|
||||||
|
|
||||||
public function via(object $notifiable): array
|
public function via(object $notifiable): array
|
||||||
{
|
{
|
||||||
@ -21,19 +20,26 @@ public function via(object $notifiable): array
|
|||||||
|
|
||||||
public function toMail(object $notifiable): MailMessage
|
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);
|
$table = new HtmlString(view('bydauto::mail.testdrive', ['items' => $this->items])->render());
|
||||||
$text = new HtmlString($text);
|
|
||||||
return (new MailMessage())
|
return (new MailMessage())
|
||||||
->subject("预约试驾线索通知")
|
->subject("预约试驾线索通知")
|
||||||
->line("收到一条新的试驾预约信息")
|
->line("收到新的试驾预约信息:")
|
||||||
->line($text)
|
->line($table)
|
||||||
->line("=====")
|
->line("=====")
|
||||||
->salutation("祝,工作愉快!");
|
->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
|
public function toArray(object $notifiable): array
|
||||||
{
|
{
|
||||||
return [
|
return [];
|
||||||
];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
packages/bydauto/views/mail/testdrive.blade.php
Normal file
12
packages/bydauto/views/mail/testdrive.blade.php
Normal 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>
|
Loading…
Reference in New Issue
Block a user