Advertisement
auto30

Untitled

Feb 14th, 2013
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.48 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> Dummy Code </title>
  4. <script>
  5. sendMail(){
  6. <?php
  7. $to      = '[email protected]';
  8. $subject = 'DummyCode.com';
  9. $message = 'This is a text message sent from DummyCode.com';
  10. $headers = 'From: [email protected]' . "\r\n" .
  11.    'Reply-To: [email protected]' . "\r\n" .
  12. mail($to, $subject, $message, $headers);
  13. ?>
  14. }
  15. </script>
  16. </head>
  17. <body>
  18. <h1 align=center> DummyCode.com </h1>
  19. <button type="button" onClick="sendMail()"> Send Mail! </button>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement