Click to See Complete Forum and Search --> : COntact Form HELP!!!
I'm working on a website using xml but i'm a bit new to this scripting language..my question is :
can I use my hotmail account as the email to receive messages from your contact form?
aj_nsc
03-12-2010, 10:13 AM
You can use any valid e-mail address to receive input from a contact form. It might get junked the first time around depending on your settings, but just add the address to the safe list and it'll be fine.
This is my Configuration for my contact form. I test the form with Live account address but I dont receive any email..Not even on my junk box..
..any suggestion to make it work with my live email account?
<?xml version="1.0" encoding="utf-8"?>
<contactFormConfiguration>
<emailTo>pierre_vargas@live.com</emailTo>
<serverProcessorType>php</serverProcessorType>
<serverProcessorFileName>contact</serverProcessorFileName>
<validateRequiredOnly>false</validateRequiredOnly>
<submitFormOnEnter>false</submitFormOnEnter>
<messageSentText>Thank you for your message.</messageSentText>
<messageSentFailedText>Thank you for your message.</messageSentFailedText>
<formProcessingText>processing...</formProcessingText>
<smtpServer>localhost</smtpServer>
<smtpPort>25</smtpPort>
<plainText>false</plainText>
<emailFromSource>3</emailFromSource>
<subjectSource>Contact Form from your site</subjectSource>
<validationErrorMessages>
<message type="fieldIsRequired">{LABEL} is required.</message>
<message type="emailNotValid">{LABEL} - is not valid email address.</message>
<message type="minCharsLimitError">{LABEL} - The specified number of characters in a field is less than a required minimum.</message>
<message type="reqExpError">{LABEL} - The specified string does not match with the regular expression.</message>
<message type="biggerThanMaxError">{LABEL} - The specified number is greater than an acceptable biggest number for this field.</message>
<message type="lowerThanMinError">{LABEL} - The specified number is lower than an acceptable lowest number for this field.</message>
<message type="notANumberError">{LABEL} - The data is not a number.</message>
<message type="negativeError">{LABEL} - The specified number must not be negative.</message>
<message type="minRequirementError">{LABEL} - The minimum number of variants is not selected</message>
<message type="maxRequirementError">{LABEL} - The number of variants selected exceeds the maximum</message>
<message type="shouldBeEqualError">{LABEL} - values do not match</message>
<message type="dateIsNotValidError">{LABEL} - date has wrong format</message>
</validationErrorMessages>
</contactFormConfiguration>