<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class UserGroupEmail 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_batch_mail')->with(['name' => $this->first_name, $this->subject, $this->mail_body]);
}
}
How To Payment
Making a payment on our website is quick and secure. Start by logging in or creating an account. Select your preferred payment method, input the required details, and review the information. Once you confirm everything is correct, click on the "Submit Payment" button. You’ll receive instant confirmation and can track your payment status through your account dashboard. It’s an easy and secure process.