mail.php 825 B

1234567891011121314151617181920
  1. <?php
  2. return [
  3. 'resetPassword' => [
  4. 'greeting' => 'Hello',
  5. 'salutation' => 'Regards, Laravel',
  6. 'subject' => 'Reset Password Notification',
  7. 'excerpt' => 'You are receiving this email because we received a password reset request for your account.',
  8. 'button' => 'Reset Password',
  9. 'timeout' => 'This password reset link will expire in :count minutes.',
  10. 'subcopy' => 'If you’re having trouble clicking the :actionText button, copy and paste the URL below. into your web browser:'
  11. ],
  12. 'verifyEmail' => [
  13. 'greeting' => 'Hello',
  14. 'salutation' => 'Regards, Laravel',
  15. 'subject' => 'Verify Email Address',
  16. 'excerpt' => 'Please click the button below to verify your email address.',
  17. 'button' => 'Verify Email Address'
  18. ],
  19. ];