mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 17:31:49 +08:00 
			
		
		
		
	update: add send mass mail queue
This commit is contained in:
		| @@ -256,7 +256,8 @@ class UserController extends Controller | ||||
|                     'url' => config('v2board.app_url'), | ||||
|                     'content' => $request->input('content') | ||||
|                 ] | ||||
|             ]); | ||||
|             ], | ||||
|             'send_email_mass'); | ||||
|         } | ||||
|  | ||||
|         return response([ | ||||
|   | ||||
| @@ -21,10 +21,9 @@ class SendEmailJob implements ShouldQueue | ||||
|      * | ||||
|      * @return void | ||||
|      */ | ||||
|     public function __construct($params) | ||||
|     public function __construct($params, $queue = 'send_email') | ||||
|     { | ||||
|         $this->delay(now()->addSecond(2)); | ||||
|         $this->onQueue('send_email'); | ||||
|         $this->onQueue($queue); | ||||
|         $this->params = $params; | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user