Your ROOT_URL in app.ini is http://167.99.32.63:3000/ but you are visiting http://167.99.32.63/ibrahim/BAGETWEBPANEL/src/commit/5502e10312f1346e86a7121a4cdd08e66c54c696/app/Mail/CustomerRegistration.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 

37 lines
690 B

<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class CustomerRegistration extends Mailable
{
use Queueable, SerializesModels;
/**
* Create a new message instance.
*
* @return void
*/
protected $name;
protected $type;
public function __construct($name, $type=false)
{
$this->name = $name;
$this->type = $type;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->view('email-templates.customer-registration')->with(['name'=>$this->name,'type'=>$this->type]);
}
}