first upload all files
This commit is contained in:
49
Modules/User/Mail/Welcome.php
Normal file
49
Modules/User/Mail/Welcome.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\User\Mail;
|
||||
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Mail\Mailable;
|
||||
use Modules\Media\Entities\File;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
|
||||
class Welcome extends Mailable implements ShouldQueue
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
||||
private $firstName;
|
||||
public $heading;
|
||||
public $text;
|
||||
|
||||
/**
|
||||
* Create a new instance.
|
||||
*
|
||||
* @param string $firstName
|
||||
* @return void
|
||||
*/
|
||||
public function __construct($firstName)
|
||||
{
|
||||
$this->firstName = $firstName;
|
||||
$this->heading = trans('user::mail.welcome', ['name' => $firstName]);
|
||||
$this->text = trans('user::mail.account_created');
|
||||
}
|
||||
|
||||
/**
|
||||
* Build the message.
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function build()
|
||||
{
|
||||
return $this->subject(trans('user::mail.welcome', ['name' => $this->firstName]))
|
||||
->view("emails.{$this->getViewName()}", [
|
||||
'logo' => File::findOrNew(setting('storefront_mail_logo'))->path,
|
||||
]);
|
||||
}
|
||||
|
||||
private function getViewName()
|
||||
{
|
||||
return 'text' . (is_rtl() ? '_rtl' : '');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user