| 1 | <?php |
||
| 13 | class SendTestMailJob implements ShouldQueue |
||
| 14 | { |
||
| 15 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
| 16 | |||
| 17 | /** @var \Spatie\EmailCampaigns\Models\Campaign */ |
||
| 18 | public $campaign; |
||
| 19 | |||
| 20 | /** @var string */ |
||
| 21 | public $email; |
||
| 22 | |||
| 23 | /** @var string */ |
||
| 24 | public $queue; |
||
| 25 | |||
| 26 | public function __construct(Campaign $campaign, string $email) |
||
| 34 | |||
| 35 | public function handle() |
||
| 43 | } |
||
| 44 |