Jump to content

Recommended Posts

I am building a small email list and I was wanting to send the subscriber an email with a verification method in it. My question is, how can I accomplish this? I am thinking that I create a hidden form with some field that will be put in a query to update their row to be authorized. Can someone help?

Thanks

Link to comment
https://forums.phpfreaks.com/topic/173970-solved-email-verification/
Share on other sites

I'm kind of confused. Do you want to verify that their email is valid? like so they can't just put like Email: aifdh8a9fh?

 

this function will do that

 

function verifyEmail($email){
$pattern = "^[a-zA-Z0-9_]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$]";

return preg_match($pattern, $email);
}

Thanks for reply. Not so much if valid email but I want to send them an email from the form of which I can do. I am wanting the email to have a link that they will have to click a link or form button that will return information to update mysql field in their row that will allow their email address to be apart of the mailing list that will be sent out.

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.