<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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">
	<channel>
		<title>Support Forum - Topic: Contact Form Not Sending</title>
		<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2</link>
		<description>Support Forum - Topic: Contact Form Not Sending</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 11:15:09 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/contact-form-not-sending-2" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-66423</link>
			<pubDate>Wed, 18 Jul 2012 20:04:14 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">66423@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi jessejames,&#60;/p&#62;
&#60;p&#62;The only other thing I can think of is to make sure the spelling for your email and website is correct and that the email recipient address isn't automatically rejecting the emails for some reason (server side spam filter for example).&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessejames on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-66400</link>
			<pubDate>Wed, 18 Jul 2012 18:38:03 +0000</pubDate>
			<dc:creator>jessejames</dc:creator>
			<guid isPermaLink="false">66400@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've removed the form for now and left text as this site is being promoted through media right now. The form did seem as if it submitted completely but nothing comes to my e-mail box I checked spam too and nothing.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessejames on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-66375</link>
			<pubDate>Wed, 18 Jul 2012 14:08:45 +0000</pubDate>
			<dc:creator>jessejames</dc:creator>
			<guid isPermaLink="false">66375@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for responding Dude. I've added my site name and currently nothing is coming through still. I'm stuck on this contact form.&#60;/p&#62;
&#60;p&#62;Please advise. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-62785</link>
			<pubDate>Fri, 29 Jun 2012 06:22:15 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">62785@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Please insert your contact details in contact.php - open up the file and modify following two lines:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$name_of_your_site = &#38;quot;Display.net&#38;quot;;
$email_adress_reciever = &#38;quot;office@display.net&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Display.net must be replaced with your website address, the email address must be replaced with your email address.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessejames on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-62771</link>
			<pubDate>Fri, 29 Jun 2012 03:49:53 +0000</pubDate>
			<dc:creator>jessejames</dc:creator>
			<guid isPermaLink="false">62771@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It works but it doesn't send to my e-mail address. I think something is wrong with the send.php file. see code below.&#60;/p&#62;
&#60;p&#62;This is the code in my send.php file.&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
if(isset($_POST['Send'])){&#60;br /&#62;
$error = false;&#60;br /&#62;
$the_name = $_POST['yourname'];&#60;br /&#62;
$the_email = $_POST['email'];&#60;br /&#62;
$the_website = $_POST['website'];&#60;br /&#62;
$the_message = $_POST['message'];&#60;br /&#62;
if(!checkmymail($the_email))&#60;br /&#62;
{&#60;br /&#62;
$error = true;&#60;br /&#62;
$the_emailclass = &#34;error&#34;;&#60;br /&#62;
}else{&#60;br /&#62;
$the_emailclass = &#34;valid&#34;;&#60;br /&#62;
}&#60;br /&#62;
if($the_name == &#34;&#34;)&#60;br /&#62;
{&#60;br /&#62;
$error = true;&#60;br /&#62;
$the_nameclass = &#34;error&#34;;&#60;br /&#62;
}else{&#60;br /&#62;
$the_nameclass = &#34;valid&#34;;&#60;br /&#62;
}&#60;br /&#62;
if($the_message == &#34;&#34;)&#60;br /&#62;
{&#60;br /&#62;
$error = true;&#60;br /&#62;
$the_messageclass = &#34;error&#34;;&#60;br /&#62;
}else{&#60;br /&#62;
$the_messageclass = &#34;valid&#34;;&#60;br /&#62;
}&#60;br /&#62;
if($error == false)&#60;br /&#62;
{&#60;br /&#62;
$to = $_POST['myemail'];&#60;br /&#62;
$subject = &#34;New Message from &#34; . $_POST['myblogname'];&#60;br /&#62;
$header = 'MIME-Version: 1.0' . &#34;\r\n&#34;;&#60;br /&#62;
$header .= 'Content-type: text/html; charset=utf-8' . &#34;\r\n&#34;;&#60;br /&#62;
$header .= 'From:'. $_POST['email'] . &#34; \r\n&#34;;&#60;br /&#62;
$the_message = nl2br($the_message);&#60;br /&#62;
$message = &#34;New message from $the_name&#60;br /&#62;
Mail: $the_email&#60;br /&#62;
Website: $the_website&#60;br /&#62;
Message: $the_message&#60;br /&#62;
&#34;;&#60;br /&#62;
mail($to,&#60;br /&#62;
$subject,&#60;br /&#62;
$message,&#60;br /&#62;
$header);&#60;br /&#62;
if(isset($_POST['ajax'])){&#60;br /&#62;
echo&#34;&#38;lt;h3&#38;gt;Your message has been sent!&#38;lt;/h3&#38;gt;&#38;lt;p&#38;gt; Thank you!&#38;lt;/p&#38;gt;&#34;;&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
function checkmymail($mailadresse){&#60;br /&#62;
$email_flag=preg_match(&#34;!^\w[\w&#124;\.&#124;\-]+@\w[\w&#124;\.&#124;\-]+\.[a-zA-Z]{2,4}$!&#34;,$mailadresse);&#60;br /&#62;
return $email_flag;&#60;br /&#62;
}&#60;br /&#62;
?&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-62768</link>
			<pubDate>Fri, 29 Jun 2012 03:36:47 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">62768@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I visited the contact page and tested it. It seems to be working, at least it gives me the notice that my message has been sent.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-62767</link>
			<pubDate>Fri, 29 Jun 2012 03:34:58 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">62767@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Sorry, I thought you have a PHP files that you created on your own. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessejames on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-62762</link>
			<pubDate>Fri, 29 Jun 2012 03:29:24 +0000</pubDate>
			<dc:creator>jessejames</dc:creator>
			<guid isPermaLink="false">62762@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://www.savethecathouse.org&#34; rel=&#34;nofollow&#34;&#62;http://www.savethecathouse.org&#60;/a&#62;. &#60;/p&#62;
&#60;p&#62;So support is only for WP even if I purchased the HTML files from you folks?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-62745</link>
			<pubDate>Fri, 29 Jun 2012 02:11:44 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">62745@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;If it is not a WordPress site, I don't think we can possibly offer you any help. Can you give us a link?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jessejames on "Contact Form Not Sending"</title>
			<link>http://www.kriesi.at/support/topic/contact-form-not-sending-2#post-62730</link>
			<pubDate>Thu, 28 Jun 2012 22:27:13 +0000</pubDate>
			<dc:creator>jessejames</dc:creator>
			<guid isPermaLink="false">62730@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello my contact form is not sending. Edited all the placed where I believe I should add my e-mail address to have the information sent to me when you click send but nothing is happening. This is not the Wordpress site only HTML &#38;amp; PHP please help asap.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
