开发者

Getting empty email

here is php mailer.php file

<?php

$to = "abc@gmail.com";
$subject = "Contact via website";
$name_field = $_REQUEST['name'];
$email_field = $_REQUEST['email'];
$message = $_REQUEST['message'];

$body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message";

mail($to, $subject, $body);

?>

here is jquery code

$('.submit').click(function(){
            $('span.msg').css({'visibility': 'visible'}).text('Sending...');
            $.post("mailer.php", $(".contactPage").serialize(),
                function(data){
                    $('span.msg').text('Your Message has been received. Thank you').show();
                });

            return false;    

here is html code

<div class="contactPage">   
    <label>Name</label>
    &l开发者_运维技巧t;input type="text" name="name" class="txt" />
    <label>Email</label>
    <input type="text" name="email" class="txt" />
    <label>Message</label>
    <textarea class="txt_area" name="message" rows="5" cols="30"></textarea>        
    <input type="button" class="submit" value="" />
    <span class="msg">Your Message has been received. Thank you</span>  
</div>
        });

but i am getting empty email....


.serialize() only works on a <form> element, so you need to replace this:

<div class="contactPage">   

With this (and the matching closing tag).:

<form class="contactPage">  

Also use the submit event to be safe, like this:

$('.contactPage').submit(function(){
  $('span.msg').css({'visibility': 'visible'}).text('Sending...');
  $.post("mailer.php", $(this).serialize(), function(data){
    $('span.msg').text('Your Message has been received. Thank you').show();
  });
  return false;
});

Here's a demo showing how serializing <div> doesn't work, but a <form> does :)


The best way to debug stuff like this is to install firebug or httpfox and view the headers as they are sent. If you're a developer i recommend firebug, because it has a lot of useful tools.

I imagine you'll find that it's this line

$.post("mailer.php", $(".contactPage").serialize(),
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜