I am very new to PHP/LARAVEL development trying to develop 1 application to send the email from smtp.gmail.com.
I am getting error as
[ [Tue Jan 11 17:11:32.765352 2022] [php:error] [pid 21752:tid 1952] [client ::1:56549] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 132124672 bytes) ]
in below line of code:
try {
Mail::to($user->email)->send(new SendMail($message1,$notification_template->subject));
}
catch (\Throwable $th) {
throw $th;
}
I already tried to set memory_limit
to -1
(no limit) or 2048M
in php.ini
, but no luck. Getting same error from XAMPP and VSCode.
I am using gmail as SMTP server for sending email.
Can you please help me to understand the issue and to fix it?