2019-08-05 14:53:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Admin\Mail;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* New Admin Mail class
|
|
|
|
|
*
|
|
|
|
|
* @author Rahul Shukla <rahulshukla.symfony517@webkul.com>
|
|
|
|
|
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
|
|
|
*/
|
|
|
|
|
class NewCustomerNotification extends Mailable
|
|
|
|
|
{
|
|
|
|
|
use Queueable, SerializesModels;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The customer instance.
|
|
|
|
|
*
|
|
|
|
|
* @var customer
|
|
|
|
|
*/
|
|
|
|
|
public $customer;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The password instance.
|
|
|
|
|
*
|
|
|
|
|
* @var password
|
|
|
|
|
*/
|
|
|
|
|
public $password;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new message instance.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function __construct($customer, $password)
|
|
|
|
|
{
|
|
|
|
|
$this->customer = $customer;
|
|
|
|
|
|
|
|
|
|
$this->password = $password;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Build the message.
|
|
|
|
|
*
|
|
|
|
|
* @return $this
|
|
|
|
|
*/
|
|
|
|
|
public function build()
|
|
|
|
|
{
|
|
|
|
|
return $this->to($this->customer->email)
|
2020-02-27 08:03:03 +00:00
|
|
|
->subject(trans('shop::app.mail.customer.new.subject'))
|
|
|
|
|
->view('shop::emails.customer.new-customer')->with(['customer' => $this->customer, 'password' => $this->password]);
|
2019-08-05 14:53:48 +00:00
|
|
|
}
|
|
|
|
|
}
|