mailService.php
<?php
namespace App\Http\Services;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Queue\ShouldQueue;
class mailService extends Mailable
{
use Queueable, SerializesModels;
/**
* The data instance.
*
* @param $data
*/
public $data;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct($data)
{
$this->data = $data;
}
public function build()
{
$address = '[email protected]';
$subject = 'This is a demo!';
$name = 'Jane Doe';
return $this->view('emails.test')
->from($address, $name)
->cc($address, $name)
->bcc($address, $name)
->replyTo($address, $name)
->subject($subject)
->with([ 'test_message' => $this->data['message'] ]);
}
}
clientService.php
use App\Http\Services\mailService as EmailService;
/**
* @param $clientId
* @param $comp_id
*
* @return \App\Http\Models\clients|\Illuminate\Database\Eloquent\Model
*/
public function getClient($clientId, $comp_id)
{
$data = ['message' => 'This is a test!'];
Mail::to('[email protected]')->send(new EmailService($data));
return $this->clientsRepository->getClient($clientId, $comp_id);
}
When I pass the argument $data
to a new instance of EmailService
I get an error saying
too few arguments passed to constructor function
but I don't understand why if I'm passing $data
in the clientService
, thank you for your help in advance.
I'm using the Lumen Framework 5.3
and PHP 7.2
and this code sample was taken from Sendgrid docs.