From ef19153c872db726660c0887bb5c3c5340e14194 Mon Sep 17 00:00:00 2001 From: Thomas Arrow Date: Wed, 2 Sep 2026 12:29:00 +0100 Subject: [PATCH] Add disclaimer to PolicyAnnouncementNotification After a quick discussion it was decided that we should resend the existing notification to all users. This ensure that everyone will get it at least once and nobody misses it. Bug: T432211 --- app/Notifications/PolicyAnnouncementNotification.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Notifications/PolicyAnnouncementNotification.php b/app/Notifications/PolicyAnnouncementNotification.php index 01f4e69a..fd6f3ea5 100644 --- a/app/Notifications/PolicyAnnouncementNotification.php +++ b/app/Notifications/PolicyAnnouncementNotification.php @@ -28,6 +28,7 @@ public function toMail($notifiable): MailMessage { ->from('noreply@wikibase.cloud', 'Wikibase Cloud') ->subject(Lang::get('Please review and accept the updated Terms of Use and new Hosting Policy')) ->greeting(Lang::get('Dear Wikibase Cloud user,')) + ->line(new HtmlString(Lang::get('Apologies if you receive this mail twice. A glitch in our email sending system occurred and we want to be sure everyone got this message.'))) ->line(new HtmlString(Lang::get('We\'ve made two updates to the agreements that help run and maintain Wikibase Cloud. Please review and accept them if you agree. You can do it by logging in to the website.'))) ->line('') ->line(new HtmlString(Lang::get('What are we talking about and why is that important?')))