From 997fbbf5ef5130f05f2bd46a7575f6a1953d0710 Mon Sep 17 00:00:00 2001 From: Kekskurse Date: Tue, 30 Apr 2019 14:39:01 +0200 Subject: [PATCH] #16 Replace name by setting name --- app/Jobs/Mails/ValidateMailAddressJob.php | 2 +- resources/views/index.php | 19 +++---------------- resources/views/layout/top.php | 4 ++-- 3 files changed, 6 insertions(+), 19 deletions(-) diff --git a/app/Jobs/Mails/ValidateMailAddressJob.php b/app/Jobs/Mails/ValidateMailAddressJob.php index dd21d44..c2a58eb 100644 --- a/app/Jobs/Mails/ValidateMailAddressJob.php +++ b/app/Jobs/Mails/ValidateMailAddressJob.php @@ -45,7 +45,7 @@ class ValidateMailAddressJob extends Job $mail->addBCC($bcc); } $mail->isHTML(true); - $mail->Subject = 'Keks Account E-Mail validation'; + $mail->Subject = Setting::getSettingValue("name").' E-Mail validation'; $mail->Body = 'Hello,
to validate your E-Mail address click on the following link: Activate Account'; $mail->AltBody = 'Hello,\r\nto validate your E-Mail address click on the following link: '.Setting::getSettingValue('url').'/gui/mailValidation/'.$this->mailObject->id.'/'.$this->mailObject->validation_code; $mail->send(); diff --git a/resources/views/index.php b/resources/views/index.php index 3517d05..9344c39 100644 --- a/resources/views/index.php +++ b/resources/views/index.php @@ -2,28 +2,15 @@
-
-

Keks Account

+

- account.keks.cloud is a oAuht Provider to login with a single user to different Services. You just need one Account to use all Services, also other developers can add this Service to there services. + is a oAuht Provider to login with a single user to different Services. You just need one Account to use all Services, also other developers can add this Service to there services.

In the test phase of the Project you need an Invite-Code to create a new Account. diff --git a/resources/views/layout/top.php b/resources/views/layout/top.php index ed02418..d5bae64 100644 --- a/resources/views/layout/top.php +++ b/resources/views/layout/top.php @@ -1,6 +1,6 @@ - Keks Account + <?php echo $settingsArray["name"]; ?> @@ -12,7 +12,7 @@