php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #43878 Contact form problem
Submitted: 2008-01-17 16:26 UTC Modified: 2008-01-17 19:09 UTC
From: citlallichan at acceco dot com dot mx Assigned:
Status: Not a bug Package: Website problem
PHP Version: Irrelevant OS: Windows
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: citlallichan at acceco dot com dot mx
New email:
PHP Version: OS:

 

 [2008-01-17 16:26 UTC] citlallichan at acceco dot com dot mx
Description:
------------
Hi, I'm having troubles with the contact form in my webpage.
I linked the php with action script.

Also to comunicate with the server I use the unicode:  System.useCodepage = false;

Is this ok or should I errase this line?

Reproduce code:
---------------
<?php

	$destinatario="citlallichan@acceco.com.mx";   	
	//estos datos se usaran como cabecera del email.
	$cabeceras="MIME-Version: 1.0\r\n";
	$cabeceras .= "Content-type: text/html; charset=utf-8\r\n";
	$cabeceras.="From: {$_POST['nombre']}<{$de}>\r\n";
	$cabeceras.="Reply-To: {$_POST['email']}\r\n";
	//el asunto del mensaje:
	$asunto="Contacto Sitio Web ACCECO";
	//El cuerpo del mensaje:
	$cuerpo.=' Nombre: '.$_POST['nombre']. "<br>";
	$cuerpo.=' Email: '.$_POST['email']. "<br>";
	$cuerpo.=' Empresa: '.$_POST['empresa']. "<br>";
	$cuerpo.=' Telefono: '.$_POST['telefono']. "<br>";
	$cuerpo.=' Se entero de nosotros por: '.$_POST['medio']. "<br>";
	$cuerpo.=' Comentario: '.$_POST['texto'];
	//la persona que envia el email.
	$de=$_POST['email'];



	if(mail($destinatario, $asunto, $cuerpo,$cabeceras)){
		echo utf8_encode('&estado=enviado');	 
	 }else{
	 	echo utf8_encode('&estado=no_enviado');	
	 } 

?>

Expected result:
----------------
It suppouse to send an email with the data previously captured in the form.
The code uses an "if" to make sure the process is complete, when it's not a messagge tells you that a problem ocurred.

Actual result:
--------------
An error ocurred and can't send the mail

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-01-17 19:09 UTC] bjori@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.


 
PHP Copyright © 2001-2026 The PHP Group
All rights reserved.
Last updated: Sun Jun 14 09:00:02 2026 UTC