improve hooking capabilities when sending documents
This commit is contained in:
		| @@ -3,6 +3,7 @@ | ||||
| namespace App\Jobs\Document; | ||||
|  | ||||
| use App\Abstracts\Job; | ||||
| use App\Events\Document\DocumentSending; | ||||
| use App\Events\Document\DocumentSent; | ||||
| use App\Models\Document\Document; | ||||
|  | ||||
| @@ -18,6 +19,8 @@ class SendDocumentAsCustomMail extends Job | ||||
|     { | ||||
|         $document = Document::find($this->request->get('document_id')); | ||||
|  | ||||
|         event(new DocumentSending($document)); | ||||
|  | ||||
|         $custom_mail = $this->request->only(['to', 'subject', 'body']); | ||||
|  | ||||
|         if ($this->request->get('user_email', false)) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user