Email conversation
From | Dominique Echalier |
To | Me |
Subject | Using validateEmail.php with java apache mail server |
Date | 28 September 2006 05:26 |
I found validateEmail.php script and try to use it with JAMES java apache
mail server.
At present the server does not handle the validation correctly.
As the server is connected to a MySQL database, I would like to check for
possible incoming spam adresses.
I'm certainly not an expert in php coding. Running the script from your site
is giving me the expected results.
Looking to the code, "mailtools.php" file is missing from the downloaded
files.
Do I miss something?
Where could I find this script?
Thanks you.
dominique e.
From | Me |
To | Dominique Echalier |
Subject | Re: Using validateEmail.php with java apache mail server |
Date | 28 September 2006 19:57 |
Dominique,
> Running the script from your site is giving me the expected results.
> Looking to the code, "mailtools.php" file is missing from the downloaded
> files.
That is only my demonstration. You do not need that. Just include my script
in your own PHP script, then check if the address is valid:
require(validateEmail.php);
if(checkEmail($whatever_the_email_address_was)) {
//it was valid
... do some stuff...
}
Mark 'Tarquin' Wilton-Jones - author of http://www.howtocreate.co.uk/
From | Dominique Echalier |
To | Me |
Subject | Re: Using validateEmail.php with java apache mail server |
Date | 2 October 2006 18:55 |
Thanks you very much Tarquin.
Sorry to disturb you.
Your script is working perfectly.
dominique e.