From 4a4f5288146c51daa708ee1f3b828f0911e223df Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 4 Jul 2022 10:53:33 +1000 Subject: [PATCH] New Account Notification --- app/Notifications/Ninja/NewAccountNotification.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Notifications/Ninja/NewAccountNotification.php b/app/Notifications/Ninja/NewAccountNotification.php index 52648d3606..1cd13b8d55 100644 --- a/app/Notifications/Ninja/NewAccountNotification.php +++ b/app/Notifications/Ninja/NewAccountNotification.php @@ -78,10 +78,10 @@ class NewAccountNotification extends Notification public function toSlack($notifiable) { $content = "New Trial Started\n"; - $content = "{$this->client->name}\n"; - $content = "Account key: {$this->account->key}\n"; - $content = "Users: {$this->account->users()->pluck('email')}\n"; - $content = "Contacts: {$this->client->contacts()->pluck('email')}\n"; + $content .= "{$this->client->name}\n"; + $content .= "Account key: {$this->account->key}\n"; + $content .= "Users: {$this->account->users()->pluck('email')}\n"; + $content .= "Contacts: {$this->client->contacts()->pluck('email')}\n"; return (new SlackMessage)