coolify/app/Jobs/SubscriptionInvoiceFailedJob.php

42 lines
1.4 KiB
PHP
Raw Normal View History

2023-08-24 16:14:09 +02:00
<?php
namespace App\Jobs;
use App\Models\Team;
use Illuminate\Bus\Queueable;
2023-09-14 10:12:44 +02:00
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
2023-08-24 16:14:09 +02:00
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2024-06-10 22:43:34 +02:00
class SubscriptionInvoiceFailedJob implements ShouldBeEncrypted, ShouldQueue
2023-08-24 16:14:09 +02:00
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2024-06-19 08:59:46 +02:00
public function __construct(protected Team $team) {}
2023-08-24 16:14:09 +02:00
public function handle()
{
try {
$session = getStripeCustomerPortalSession($this->team);
$mail = new MailMessage();
$mail->view('emails.subscription-invoice-failed', [
'stripeCustomerPortal' => $session->url,
]);
$mail->subject('Your last payment was failed for Coolify Cloud.');
$this->team->members()->each(function ($member) use ($mail) {
ray($member);
if ($member->isAdmin()) {
send_user_an_email($mail, $member->email);
}
});
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
2024-06-10 22:43:34 +02:00
send_internal_notification('SubscriptionInvoiceFailedJob failed with: '.$e->getMessage());
2023-09-11 17:36:30 +02:00
ray($e->getMessage());
throw $e;
2023-08-24 16:14:09 +02:00
}
}
}