fix: mail priority

This commit is contained in:
Maël Gangloff
2025-01-23 00:31:37 +01:00
parent 4f4d18c816
commit 01f1fac357
7 changed files with 51 additions and 15 deletions

View File

@@ -30,7 +30,7 @@ class DomainOrderNotification extends DomainWatchdogNotification
$this
->subject("Success: Domain Ordered $ldhName!")
->content("Domain name $ldhName has just been purchased. The API provider did not return an error.")
->importance(Notification::IMPORTANCE_HIGH);
->importance(Notification::IMPORTANCE_URGENT);
return ChatMessage::fromNotification($this);
}
@@ -41,7 +41,7 @@ class DomainOrderNotification extends DomainWatchdogNotification
$this
->subject("Success: Domain Ordered $ldhName!")
->content("Domain name $ldhName has just been purchased. The API provider did not return an error.")
->importance(Notification::IMPORTANCE_HIGH);
->importance(Notification::IMPORTANCE_URGENT);
return PushMessage::fromNotification($this);
}