hi thanks,
but maybe i didn't explain myself clearly:
IT IS specified in the php.ini file.
but instead of being "localhost" as default it is specified to "mail.mydomain.com"
so, in the php.ini file, SMTP = mail.mydomain.com
My problem is in my code how to specify this SMTP server because without specifying, it tries to post through localhost which does not exsist.
So, my problem is in here:
mail( "info@mydomain.com", "WEB ENQUIRY",
"
NAME = $fullname
COMPANY = $company
PHONE = $telephone
EMAIL = $email
SOURCE LANGUAGE = $sourcelanguage
TARGET LANGUAGE = $language
NUMBER OF WORDS = $word
DATE = $Date
INSTRUCTIONS = $message
", "From: info@mydoamin.com" );
in how to point to that mail server.
Does that make sense?
thanks,
Vinny