Send a confirmation link to the mail id provided

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
coder500
Forum Newbie
Posts: 20
Joined: Fri Jul 25, 2008 10:24 am
Location: Singapore

Send a confirmation link to the mail id provided

Post by coder500 »

I am capturing username and email id.
I want to verify client's email id before sending the report.
So before sending the report I like to send a verification link to the mail id provided.
I am not clear how I can achieve it.
I tried

Code: Select all

 $name=$_POST['name'];
$body = "Click On this link (http://www.worth2read.org/test/PhpMaile ... .php?$name to verify your mail Id";
 
But the mail I am getting is as follows :
Click On this link (http://www.worth2read.org/test/PhpMaile ... onfirm.php? to verify your mail Id .
That means the captured name is not passed.
Any help?
User avatar
jaoudestudios
DevNet Resident
Posts: 1483
Joined: Wed Jun 18, 2008 8:32 am
Location: Surrey

Re: Send a confirmation link to the mail id provided

Post by jaoudestudios »

how are you creating the link, can we see your code?
Post Reply