soy nuevo en el tema y tengo un inconveniente.
Genere mi web con website x5 - y lo subi a mi hosting pago de adwarspace.
el problema que tengo es con el formulario de contacto , ya que la persona que se quiere contactar, llena el formulario pero no me llega el mail a la direccion info mia. . pero a ella le llega la confirmacion.
que es lo que tendria que hacer para que funcione, lei por ahi que adwarspace necesita habilitar una funcion en la cuenta.
este es el codigo php que tengo
<?php
$settings['imEmailForm_5_1'] = array(
"owner_email_from" => "E-mail",
"owner_email_to" => "[email protected]",
"customer_email_from" => "[email protected]",
"customer_email_to" => "E-mail",
"owner_message" => "",
"customer_message" => "",
"owner_subject" => "Consulta desde la WEB",
"customer_subject" => "",
"owner_csv" => False,
"customer_csv" => False,
"confirmation_page" => "../index.html"
);
if(substr(basename($_SERVER['PHP_SELF']), 0, 11) == "imEmailForm") {
include "../res/x5engine.php";
$answers = array(
);
$form_data = array(
array('label' => 'Nombre', 'value' => $_POST['imObjectForm_1_1']),
array('label' => 'Empresa', 'value' => $_POST['imObjectForm_1_2']),
array('label' => 'E-mail', 'value' => $_POST['imObjectForm_1_3']),
array('label' => 'Mensaje', 'value' => $_POST['imObjectForm_1_4'])
);
$files_data = array(
);
if(@$_POST['action'] != "check_answer") {
if(!isset($_POST['imJsCheck']) || $_POST['imJsCheck'] != "jsactive")
die(imPrintJsError());
if(isset($_POST['imSpProt']) && $_POST['imSpProt'] != "")
die(imPrintJsError());
$email = new imSendEmail();
$email->sendFormEmail($settings['imEmailForm_5_1'], $form_data, $files_data);
@header('Location: ' . $settings['imEmailForm_5_1']['confirmation_page']);
} else {
if(@$_POST['id'] == "" || @$_POST['answer'] == "" || strtolower(trim($answers[@$_POST['id']])) != strtolower(trim(@$_POST['answer'])))
echo "0";
else
echo "1";
}
}
// End of file