Skip to content

Commit 8ca212b

Browse files
committed
Add license management details to email
1 parent c24d1ba commit 8ca212b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/Notifications/LicenseKeyGenerated.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@ public function toMail(object $notifiable): MailMessage
4040
->line('Thank you for purchasing a NativePHP for Mobile license.')
4141
->line('Your license key is:')
4242
->line("**{$this->licenseKey}**")
43-
->line('When prompted by Composer, use your email address as the username and this license key as the password.')
43+
->line('When prompted by Composer, use your **email address as the username** and this **license key as the password**.')
4444
->action('View Installation Guide', url('/docs/mobile/1/getting-started/installation'))
4545
->line('If you need to manage your subscription for this license, you can do so on [Stripe](https://billing.stripe.com/p/login/4gwaGV5VK0uU44E288).')
4646
->line("If you have any questions, please don't hesitate to reach out to our support team.")
47-
->lineIf($this->subscription === Subscription::Max, 'As a Max subscriber, you also have access to the NativePHP/mobile repository. To access it, please log in to [Anystack.sh](https://auth.anystack.sh/?accountType=customer) using the same email address you used for your purchase.')
47+
->lineIf($this->subscription !== Subscription::Mini, 'As a Pro or Max subscriber, you can manage license keys associated with your license in our [License Manager](https://nativephp.com/customer/licenses).')
48+
->lineIf($this->subscription === Subscription::Max, 'As a Max subscriber, you also have access to the NativePHP/mobile repository. To access it, please log in to [Anystack](https://auth.anystack.sh/?accountType=customer) using the same email address you used for your purchase.')
4849
->salutation("Happy coding!\n\nThe NativePHP Team")
4950
->success();
5051
}

0 commit comments

Comments
 (0)