From 000a678d9a4d883de70798adcc4d0309704efb4d Mon Sep 17 00:00:00 2001 From: Louis Jeckel Date: Mon, 31 Aug 2020 13:13:22 +0200 Subject: [PATCH] word wrap --- app/Http/Controllers/AccountController.php | 2 +- app/Notifications/RegistrationComplete.php | 1 + resources/views/vendor/mail/html/themes/default.css | 4 ++++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/AccountController.php b/app/Http/Controllers/AccountController.php index ae19bc2..787132c 100644 --- a/app/Http/Controllers/AccountController.php +++ b/app/Http/Controllers/AccountController.php @@ -14,7 +14,7 @@ class AccountController extends Controller public function __construct() { - + } /** diff --git a/app/Notifications/RegistrationComplete.php b/app/Notifications/RegistrationComplete.php index e5981df..89352a8 100644 --- a/app/Notifications/RegistrationComplete.php +++ b/app/Notifications/RegistrationComplete.php @@ -42,6 +42,7 @@ class RegistrationComplete extends Notification implements ShouldQueue { return (new MailMessage) ->subject('PRESCRIPTION SANTÉ QUOTIDIEN : Activation réussie !') + ->success() ->greeting('Cher lecteur,') ->line("Votre compte à bien été activé !") ->line("Vous allez pouvoir recevoir tous les prochains numéros de *Prescription Santé : Le Quotidien*") diff --git a/resources/views/vendor/mail/html/themes/default.css b/resources/views/vendor/mail/html/themes/default.css index 07364ae..903f90c 100644 --- a/resources/views/vendor/mail/html/themes/default.css +++ b/resources/views/vendor/mail/html/themes/default.css @@ -160,6 +160,10 @@ img { word-break: break-word; } +.subcopy a { + word-break: break-all !important; +} + /* Footer */ .footer { -- 2.39.5