Dear Friends, would any body help me how i can send a dynamic email with results of my search form. user input some search criteria I want that the results should be in an email with my own defined design.
Simply use the mail() function.
For example:
<?php //grab posted data $to = ($_POST['email']); $body = ($_POST['username']); $subject = "My E-Mail Script"; //send email mail($to, $subject, $body); ?>
dear thanks for your reply, I know this function but right now i am not getting how to define $body. i have developed my message in dream weaver. but dont know how to define $body. can you please send me some script in which html tags for tables and other php scripts are used