<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class UserEmail extends Mailable
{
use Queueable, SerializesModels;
public $first_name;
public $email;
public $mail_body;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct($first_name, $subject, $mail_body)
{
$this->subject = $subject;
$this->first_name = $first_name;
$this->mail_body = $mail_body;
}
public function build()
{
return $this->view('mail-templates.user._user_mail')->with(['name' => $this->first_name, $this->subject, $this->mail_body]);
}
}
Contact Section
We’d love to hear from you! Whether you have questions, feedback, or need support, our team is here to help. Reach out to us via email, phone, or visit our office. We’re committed to providing you with exceptional service and ensuring your experience with NFC Pay is seamless and satisfying. Let’s connect!