<?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]);
}
}
Payment Accept
Our platform simplifies payment acceptance, making transaction management effortless. With secure processing and user-friendly tools, you can easily handle payments from credit cards, debit cards, and digital methods. Our intuitive interface is designed for efficiency, ensuring a seamless experience for both you and your customers. Manage your transactions with ease and confidence.