Login System Pro
  • Welcome To Login System Pro
  • Getting Started
    • Introduce
    • PHP & SQL
    • Setup Unreal Database
    • Mail SMTP
  • Tutorial
    • Show All Function
    • On Completed Delegate
    • Utils
      • Login
      • Register
      • Bind to force logout
      • Force Login
      • Change Password
      • Set User Verify
      • Generate Error Code
    • Validation
      • Generate Captcha
      • Is Valid Email
      • Validate String against Enum
      • Is String Length Valid
      • Is User Email Verify
    • Variable
      • Get User is Ban
      • Get User Admin Status
      • Check Is Login
      • Get Users Item
      • Get Store Current Username
    • Users
    • User Data
      • Insert User
      • Get User Data
      • Save User Data Batch
      • Save User Data
      • Set User Admin Status
      • Delete User
    • Saving
    • Mail
      • Request Password Reset
      • Resend Verify Email
      • Send Mail to User
    • LogOut
    • Clipboard
    • Ban
      • Ban User
      • Set Ban Reason
      • Get User Ban Reason
  • Extra
    • In Dev Tips
  • Other
    • Integrate With Discord Login Pro
    • Discord
Powered by GitBook
On this page
  • Input Type
  • OnCompleted
  • PHP
  • Example
  • We need to test it so , i set to verified to false ( 0 )
  • If no verify , and login using Use Veirfy bool true , will show this
  • Also using Temp Email
  1. Tutorial
  2. Mail

Resend Verify Email

PreviousRequest Password ResetNextSend Mail to User

Last updated 6 months ago

Input Type

  • Username or email - support 2 types

OnCompleted

PHP

resend_verify_email.php
```php
$verificationLink = "http://localhost/loginsystempro/verify_email.php?token=$currentToken";
```
Change localhost/loginsystempro -> to your own domain

Example

We need to test it so , i set to verified to false ( 0 )

If no verify , and login using Use Veirfy bool true , will show this

LogTemp: Received response from server: {"status":"fail","message":"Your account has not been verified yet. Please check your email."}
LogTemp: Error: Login failed: Your account has not been verified yet. Please check your email.
LogTemp: Received response from server: {"status":"success","message":"A new verification email has been sent. Please check your email."}

Also using Temp Email

On Completed Delegate