芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/lavishbdlifestyle.com/app/Mail/GuestAccountOpeningMailManager.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class GuestAccountOpeningMailManager extends Mailable { use Queueable, SerializesModels; /** * Create a new message instance. * * @return void */ public $array; public function __construct($array) { $this->array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.guest_account_opening') ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'email' => $this->array['email'], 'password' => $this->array['password'] ]); } }
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage