advanced code snippet search
orazal on 01/12/09
mail
01/12/09 07:45am01/12/09 07:34am
4 people have marked this snippet as a favorite
jfherringfackzumang_ninenkrstevski
<?php $name = $_POST["name"]; $email = $_POST["email"]; $recipient = "anthony.lazaro@supersoniks.com"; $mail_body = $_POST["message"];$subject = "Mail"; $header = "From: ". $name . " <" . $email . ">"; mail($recipient, $subject, $mail_body, $header);echo "success";?>
Report this snippet Tweet
Comment:
You need to login to post a comment.