process send eve mail job
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user