Support the ongoing development of Laravel.io →
Configuration Mail Queues
Last updated 2 years ago.
0

johnnemo said:

Hello, I am trying to send an email via my web application. It used to work but after the last upgrade of laravel something is breaking up. The message seems to arrive at Iron.io but it is never proccessed..

Do you see increase of "QUEUE SIZE" value in your Iron account for queue u-support or is 0, which would indicate that Queue:marshal is fired?

Last updated 2 years ago.
0

gecbla said:

johnnemo said:

Hello, I am trying to send an email via my web application. It used to work but after the last upgrade of laravel something is breaking up. The message seems to arrive at Iron.io but it is never proccessed..

Do you see increase of "QUEUE SIZE" value in your Iron account for queue u-support or is 0, which would indicate that Queue:marshal is fired?

Last updated 2 years ago.
0

No I do not...

Last updated 2 years ago.
0

If "MESSAGES ALL TIME" value does't change (increase) that means you have problem sending queue. Try this:

public function onSend(array $data) {
	$mail = $this->mail;

	Queue::push(function($job) use ($mail, $data){
		$mail->send($data);
	});
}

You should put a few debug messages, just to see which part of code is passing/failing!

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

johnnemo johnnemo Joined 1 May 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.