<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comentarios en: Crear un formulario de contactos simple y efectivo en PHP</title>
	<atom:link href="http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/</link>
	<description>Servicios de web hosting, dominios y certificados SSL</description>
	<lastBuildDate>Fri, 23 Sep 2011 01:52:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Por: Victor</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-772</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Thu, 19 May 2011 04:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-772</guid>
		<description>Así tengo el php, pero no logro que funcione :(

$asunto = $_POST[&quot;tipo&quot;]; 
$mailheader = &quot;From: &quot;.$_POST[&quot;email&quot;].&quot;\r\n&quot;; 
$mailheader .= &quot;Reply-To: &quot;.$_POST[&quot;email&quot;].&quot;\r\n&quot;; 
$mailheader .= &quot;Content-type: text/html; charset=iso-8859-1\r\n&quot;; 
$MESSAGE_BODY = &quot;Nombre: &quot;.$_POST[&quot;nombre&quot;].&quot;&quot;; 
$MESSAGE_BODY .= &quot;Email: &quot;.$_POST[&quot;email&quot;].&quot;&quot;; 
$MESSAGE_BODY .= &quot;Telefono: &quot;.$_POST[&quot;telefono&quot;].&quot;&quot;; 
$MESSAGE_BODY .= &quot;Lugar: &quot;.$_POST[&quot;lugar&quot;].&quot;&quot;;
$MESSAGE_BODY .= &quot;Consulta: &quot;.nl2br($_POST[&quot;consulta&quot;]).&quot;&quot;; 
mail($para, $asunto, $MESSAGE_BODY, $mailheader) or die (&quot;Error al enviar el Formulario !&quot;);</description>
		<content:encoded><![CDATA[<p>Así tengo el php, pero no logro que funcione <img src='http://blog.neothek.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>$asunto = $_POST["tipo"];<br />
$mailheader = &#8220;From: &#8220;.$_POST["email"].&#8221;\r\n&#8221;;<br />
$mailheader .= &#8220;Reply-To: &#8220;.$_POST["email"].&#8221;\r\n&#8221;;<br />
$mailheader .= &#8220;Content-type: text/html; charset=iso-8859-1\r\n&#8221;;<br />
$MESSAGE_BODY = &#8220;Nombre: &#8220;.$_POST["nombre"].&#8221;";<br />
$MESSAGE_BODY .= &#8220;Email: &#8220;.$_POST["email"].&#8221;";<br />
$MESSAGE_BODY .= &#8220;Telefono: &#8220;.$_POST["telefono"].&#8221;";<br />
$MESSAGE_BODY .= &#8220;Lugar: &#8220;.$_POST["lugar"].&#8221;";<br />
$MESSAGE_BODY .= &#8220;Consulta: &#8220;.nl2br($_POST["consulta"]).&#8221;";<br />
mail($para, $asunto, $MESSAGE_BODY, $mailheader) or die (&#8220;Error al enviar el Formulario !&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Victor</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-771</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Wed, 18 May 2011 22:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-771</guid>
		<description>Gracias por responder. Lo único que hace mención a &quot;asunto&quot; en el archivo php es lo siguiente:

&lt;?php 
$para = &#039;miemail@gmail.com&#039;; 

$asunto = $_POST[&quot;tipo&quot;]; 
$mailheader = &quot;From: &quot;.$_POST[&quot;email&quot;].&quot;\r\n&quot;; 
$mailheader .= &quot;Reply-To: &quot;.$_POST[&quot;email&quot;].&quot;\r\n&quot;; 

En el formulario no tengo opción &quot;asunto&quot;, sino &quot;Tipo de contactos&quot; y un submenú con tres opciones, ¿allí tendría que hacer alguna modificación?
Saludos.</description>
		<content:encoded><![CDATA[<p>Gracias por responder. Lo único que hace mención a &#8220;asunto&#8221; en el archivo php es lo siguiente:</p>
<p>&lt;?php<br />
$para = &#039;miemail@gmail.com&#039;; </p>
<p>$asunto = $_POST[&quot;tipo&quot;];<br />
$mailheader = &quot;From: &quot;.$_POST[&quot;email&quot;].&quot;\r\n&quot;;<br />
$mailheader .= &quot;Reply-To: &quot;.$_POST[&quot;email&quot;].&quot;\r\n&quot;; </p>
<p>En el formulario no tengo opción &quot;asunto&quot;, sino &quot;Tipo de contactos&quot; y un submenú con tres opciones, ¿allí tendría que hacer alguna modificación?<br />
Saludos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Neothek</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-764</link>
		<dc:creator>Neothek</dc:creator>
		<pubDate>Wed, 18 May 2011 03:00:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-764</guid>
		<description>Victor, verifique que el nombre del campo &quot;Asunto&quot; en el formulario sea el mismo que está recibiendo en el script PHP.</description>
		<content:encoded><![CDATA[<p>Victor, verifique que el nombre del campo &#8220;Asunto&#8221; en el formulario sea el mismo que está recibiendo en el script PHP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Victor</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-762</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Wed, 18 May 2011 01:40:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-762</guid>
		<description>Estimados, gracias por la ayuda. Usé el formulario, quedó excelente, con algunas modificaciones lque hice (siendo amateur), pero me quedó algo en el tintero: ¿cómo hago para que en el email me llegue el asunto?, me llega en blanco, actualmente.
Saludos.</description>
		<content:encoded><![CDATA[<p>Estimados, gracias por la ayuda. Usé el formulario, quedó excelente, con algunas modificaciones lque hice (siendo amateur), pero me quedó algo en el tintero: ¿cómo hago para que en el email me llegue el asunto?, me llega en blanco, actualmente.<br />
Saludos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Extended Car Warranty Company</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-760</link>
		<dc:creator>Extended Car Warranty Company</dc:creator>
		<pubDate>Tue, 17 May 2011 20:49:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-760</guid>
		<description>&lt;strong&gt;Auto Warranty Network...&lt;/strong&gt;

[...]Here you will find the links to some sites that we think you should visit[...]...</description>
		<content:encoded><![CDATA[<p><strong>Auto Warranty Network&#8230;</strong></p>
<p>[...]Here you will find the links to some sites that we think you should visit[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Auto Warranty Reviews</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-759</link>
		<dc:creator>Auto Warranty Reviews</dc:creator>
		<pubDate>Tue, 17 May 2011 20:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-759</guid>
		<description>&lt;strong&gt;Don`t Pay Auto Bills...&lt;/strong&gt;

[...]just below, are some totally unrelated sites to ours, however, they are definitely worth visiting[...]...</description>
		<content:encoded><![CDATA[<p><strong>Don`t Pay Auto Bills&#8230;</strong></p>
<p>[...]just below, are some totally unrelated sites to ours, however, they are definitely worth visiting[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Sedation Dentistry Colorado</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-758</link>
		<dc:creator>Sedation Dentistry Colorado</dc:creator>
		<pubDate>Tue, 17 May 2011 18:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-758</guid>
		<description>&lt;strong&gt;Dentist Colorado Springs CO...&lt;/strong&gt;

[...]the time to visit the content or visiting we have linked to below the[...]...</description>
		<content:encoded><![CDATA[<p><strong>Dentist Colorado Springs CO&#8230;</strong></p>
<p>[...]the time to visit the content or visiting we have linked to below the[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: custom essays</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-668</link>
		<dc:creator>custom essays</dc:creator>
		<pubDate>Wed, 04 May 2011 15:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-668</guid>
		<description>You wrote a very interesting and useful article! I think it is much liked! I&#039;m sure will be waiting for your new article!</description>
		<content:encoded><![CDATA[<p>You wrote a very interesting and useful article! I think it is much liked! I&#8217;m sure will be waiting for your new article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: iñigo</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-667</link>
		<dc:creator>iñigo</dc:creator>
		<pubDate>Wed, 04 May 2011 14:32:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-667</guid>
		<description>cuando le doy a enviar me dice: You do not have permission to access this document.</description>
		<content:encoded><![CDATA[<p>cuando le doy a enviar me dice: You do not have permission to access this document.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Hugo</title>
		<link>http://blog.neothek.com/blog-neothek/crear-un-formulario-de-contactos-simple-y-efectivo-en-php/comment-page-1/#comment-413</link>
		<dc:creator>Hugo</dc:creator>
		<pubDate>Tue, 04 Jan 2011 17:46:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neothek.com/?p=250#comment-413</guid>
		<description>Muchas gracias!</description>
		<content:encoded><![CDATA[<p>Muchas gracias!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

