leaderbin/modules/contact/send.php
Josh Sherman 5bab800948 Added contact form
Uses AYAH integration in PICKLES
2013-12-23 19:14:39 -05:00

26 lines
786 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
class contact_send extends contact
{
public function __default()
{
if (API_AYAH::isHuman())
{
// Sends the message
mail('support@gravityblvd.com', '[LeaderBin] ' . $_POST['subject'], $_POST['email'] . "\n\n" . $_POST['message']);
Browser::redirect('/contact?success');
}
else
{
?>
<h1>Our system has determined that you may not be a human being.</h1>
<p>If you happen to be Lil Wayne please <a href="/contact">contact us</a> as wed love to hear about how youre using our service.</p>
<p>If you are not Lil Wayne, please <a href="/contact">go back</a> and try the challenge game again.</p>
<iframe width="560" height="315" src="//www.youtube.com/embed/daRhEOkUL1o" frameborder="0" allowfullscreen></iframe>
<?php
exit;
}
}
}
?>