Guest User

Untitled

a guest
Apr 19th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. $name = @trim(stripslashes($_POST['name']));
  3. $from = @trim(stripslashes($_POST['email']));
  4. $subject = @trim(stripslashes($_POST['subject']));
  5. $message = @trim(stripslashes($_POST['message']));
  6. $to = "flash.to.99@gmail.com";//replace with your email
  7.  
  8. mail ($to, $subject, $message, $headers);
  9. echo "Your Mail has Been sent"
  10.  
  11. ?>
Add Comment
Please, Sign In to add comment