UserCertifyFailNotification.php 1.06 KB
<?php

namespace App\Notifications;

use App\Models\User;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Notification;

class UserCertifyFailNotification extends Notification  implements ShouldQueue
{
    use Queueable;

    /**
     * Create a new notification instance.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Get the notification's delivery channels.
     *
     * @param mixed $notifiable
     * @return array
     */
    public function via(): array
    {
        return ['sms'];
    }

    /**
     * @param \App\Models\User $notifiable
     * @return array
     */
    public function toSms(User $notifiable): array
    {
        return [
            'phone' => $notifiable->getPhoneNotificationKey(),
            'data'  => [
                'template' => 'SMS_254165982',
                'content'  => '您的账号审核未通过,请前往海星试唱APP/小程序查看详情,修改审核信息后重新提交。'
            ]
        ];
    }
}