hay 4 carpetas en la sección contacto
1.-images
2.-contact
3.-email
4.-flash
y este debe de contenerel ( message sent back) disculpa no poder explicarte mejor.
Mod: Obligatorio el uso de etiquetas GeSHi.
1.-images
2.-contact
Código (xml) [Seleccionar]
<?xml version="1.0" encoding="UTF-8"?>
<data>
<title><![CDATA[Contact <font color="#FFFFFF">Us</font>]]></title>
<request>email.php</request>
<photos url_path="images/" link="http://www.google.com/">
<image pic="img1.jpg"/>
</photos>
<description><![CDATA[<TEXTFORMAT LEADING="6"><font color="#FFFFFF">UT TELLUS DOLOR, DAPIBUS EGET</font>, ELEMENTUM VEL, CURSUS ELEIFEND, ELIT. AENEAN AUCTOR WISI ET URNA. ALIQUAM ERAT VOLUTPAT. DUIS AC TURPIS. DONEC SIT AMETER.<br /><br /><font color="#FFFFFF">TELEPHONE: +1 800 599 2335<br />FREEPHONE: +1 800 599 2545<br />FAX: +1 800 599 2547<br />E-MAIL: <a href="mailto:info@company.com">INFO@COMPANY.COM</a></font></TEXTFORMAT>]]></description>
</data>
3.-email
Código (php) [Seleccionar]
<?php
//Type the receiever's e-mail address
$emailAddress = "info@email.com";
//Type your Site Name
$siteName = "Company Name";
$contact_name = $_POST['name'];
$contact_email = $_POST['email'];
$contact_subject = $_POST['subject'];
$contact_message = $_POST['message'];
if( $contact_name == true ) {
$sender = $contact_email;
$receiver = $emailAddress;
$client_ip = $_SERVER['REMOTE_ADDR'];
$email_body = "The Name Of The Sender: $contact_name \nEmail: $sender \n\nSubject: $contact_subject
\n\nMessage: \n\n$contact_message \n\nIP ADDRESS: $client_ip \n\n$siteName";
$emailAutoReply = "Hi $contact_name, \n\nWe have just received your E-Mail. We will get
in touch in a few days. Thank you! \n\n$siteName ";
$extra = "From: $sender\r\n" . "Reply-To: $sender \r\n" . "X-Mailer: PHP/" . phpversion();
$autoReply = "From: $receiver\r\n" . "Reply-To: $receiver \r\n" . "X-Mailer: PHP/" . phpversion();
mail( $sender, "Auto Reply: $contact_subject", $emailAutoReply, $autoReply );
if( mail( $receiver, "New E-Mail - $contact_subject", $email_body, $extra ) ) {
echo "success=yes";
} else {
echo "success=no";
}
}
?>
4.-flash
y este debe de contenerel ( message sent back) disculpa no poder explicarte mejor.
Mod: Obligatorio el uso de etiquetas GeSHi.