Jump to content

activation e-mail


satant

Recommended Posts

hi i have mafia game i need when the user make register

 

send to him link whith activation link to activate his acc

 

i make the email  but i don't know how to make the link to activation ! ???

 

 /*Begin email her*/
            mail($email,"Frozen fear Signup","

            Hello $name,-

Your account has been made on Frozen Fear

Member Information:

Username        = $name
E-mail          = $email
Password        = $pass1
Home City       = $pick_city1

kindly regards, Admin team Frozen Feart ©


","From: Frozen Fear <no_reply@Frozenf.com>") or die ("mail error");
            /*End email her*/

        }
        else
        {
        echo "$error<br><br><a href='?p=register'><strong>Retry</strong></a>";
      }

Link to comment
Share on other sites

The third parameter of the mail function is where you specify your message body. 

 

Just include html code in that message body.  So if you want to like have an activation link, you have should some code like:

 

<a href="activation.php">Click here to activate</a>

Link to comment
Share on other sites

1- add a field in your database table named 'active' it can be a tinyint or enum

2- set its default value to 0, representing inactive

3- create an activation script that will change the value of this field to 1, meaning active

4- after registration send a link to users email address with some 'id' may be userid or username and this link will be to your activation script

5- once clicked the activation link will bring user to activation script that will validate user on the basis of the id and will activate his registration

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.