process send eve mail job

This commit is contained in:
2021-03-17 18:40:11 +09:00
parent 2e57663f7c
commit 62e159c1f2

View File

@@ -42,13 +42,6 @@ class ProcessSendEveMailJob implements ShouldQueue
*/
//public $retries = 3;
/**
* Middleware for the job
*
* @var \Spatie\RateLimitedMiddleware\RateLimited
*/
private $middleware;
private $sender;
private $body;
private $recipient;
@@ -60,16 +53,21 @@ class ProcessSendEveMailJob implements ShouldQueue
*
* @return void
*/
public function __construct($body, $recipient, $recipient_type, $subject, $sender) {
public function __construct($body, $recipient, $recipient_type, $subject, $sender) {
//Set the connection
$this->connection = 'redis';
//Set the middleware for the job
$this->middleware = $this->middleware();
//Private variables
$this->body = $body;
$this->recipient = $recipient;
$this->recipient_type = $recipient_type;
$this->subject = $subject;
$this->sender = $sender;
}
/**