Send email in wordpress

Posted by jul on Stack Overflow See other posts from Stack Overflow or by jul
Published on 2010-06-17T12:00:31Z Indexed on 2010/06/17 12:03 UTC
Read the original article Hit count: 319

Filed under:
|
|

hi,

I'm trying to send an email using PHP mail() in a wordpress site. I created an empty page http://www.exam-vision.com/request-flip-up-instructions which template includes the php code shown below. When I post the data, isset($_REQUEST['email']) is false, while I can in firebug that the data have been posted correctly. What can be wrong?

thanks

<?php

if (isset($_REQUEST['email']))
//if "email" is filled out, send email
{
    //send email

    $email = $_REQUEST['email'] ;
    $subject = $_REQUEST['subject'] ;
    $message = $_REQUEST['message'] ;
    mail( "<someemail>", "Subject: $subject",
    $message, "From: $email" );
    echo "Thank you for using our mail form";
}
else
//if "email" is not filled out, display the form
{
   echo "<form method='post' action='http://www.exam-vision.com/request-flip-up-instructions'>
   Email: <input name='email' type='text' /><br />
   Subject: <input name='subject' type='text' /><br />
   Message:<br />
  <textarea name='message' rows='15' cols='40'>
  </textarea><br />
  <input type='submit' />
</form>";
}
?>

© Stack Overflow or respective owner

Related posts about email

Related posts about Wordpress