43 lines
1021 B
PHP
43 lines
1021 B
PHP
<?php
|
|
|
|
namespace Webkul\User\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class AdminUpdatePassword extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
/**
|
|
* The admin instance.
|
|
*
|
|
* @var \Webkul\User\Contracts\Admin $admin
|
|
*/
|
|
public $admin;
|
|
|
|
/**
|
|
* Create a new admin instance.
|
|
*
|
|
* @param \Webkul\User\Contracts\Admin $admin
|
|
* @return void
|
|
*/
|
|
public function __construct($admin)
|
|
{
|
|
$this->admin = $admin;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
return $this->from(core()->getSenderEmailDetails()['email'], core()->getSenderEmailDetails()['name'])
|
|
->to($this->admin->email, $this->admin->name)
|
|
->subject(trans('shop::app.mail.update-password.subject'))
|
|
->view('shop::emails.admin.update-password', ['user' => $this->admin]);
|
|
}
|
|
} |