Developer Support »

Compare two email addresses  (See more user questions)

Hi

Thank you very much indeed! Much appreciated.

I do pride myself on my customer service and I have to say I do get very
positive feedback on it. It amazes me how so many companies today don't
grasp the basic idea that you have to SERVE the customer!

My pleasure to assist.

Any questions, just let me know.

Best wishes.

Charles Sweeney
https://formtoemail.com
The world's easiest feedback script!

----- Original Message -----
Sent: Friday, September 26, 2008 9:31 PM
Subject: Re: FormToEmail-Pro - New question


> Thanks Charles. Bought a full multi-user license today rather than just
> pay the $20 upgrade from single to multi-user. Don't have another way to
> say thanks for your excellent service and product.
>
> I haven't looked carefully at your site - or shopped very widely for a
> product like yours, so I may be off base here - but what you have to offer
> in after-the-sale service to non-programmers like me ought to be something
> you can sell.
>
> If you don't, I'm just going to keep paying for another license when you
> are helpful with something as material to us as this is. Without
> validating that we're getting a good email address we may as well not ask
> for it at all.
>
> Thanks again and have a good weekend.
>
>
>
>
> FormToEmail.com wrote:
> Hi
>
> Got some code for you.
>
> First of all you need to have two email input fields on your form. For
> the code to work, they must be named "email" and "email2", like so:
>
> <input type="text" name="email">
>
> <input type="text" name="email2">
>
> Then you need to put new code in the script. Open up the script
> (formtoemailpro.php) in a text editor and locate this line:
>
> // Validate email field.
>
> Above it, paste in this code:
>
> if(isset($_REQUEST['email']) || isset($_REQUEST['email2']))
> {
>
> if($_REQUEST['email'] != $_REQUEST['email2']){$errors[] = "Please
> correctly confirm your email address";}
>
> }
>
> if(isset($_REQUEST['email2'])){unset($_REQUEST['email2']);}
>
> Save the file and upload it.
>
> You can change the error message in the above code to suit.
>
> Any questions, just let me know.
>
> Best wishes.
>
> Charles Sweeney
> https://formtoemail.com
> The world's easiest feedback script!
>
> ----- Original Message -----
> Sent: Wednesday, September 24, 2008 10:13 PM
> Subject: Re: FormToEmail-Pro - New question
>
>
>
> Maybe it's in the script and I've just missed it, but is there code to
> compare and validate two entries of an email to be sure the user entered
> it correctly? Thanks again.