Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title> Dummy Code </title>
- <script>
- sendMail(){
- <?php
- $to = '[email protected]';
- $subject = 'DummyCode.com';
- $message = 'This is a text message sent from DummyCode.com';
- $headers = 'From: [email protected]' . "\r\n" .
- 'Reply-To: [email protected]' . "\r\n" .
- mail($to, $subject, $message, $headers);
- ?>
- }
- </script>
- </head>
- <body>
- <h1 align=center> DummyCode.com </h1>
- <button type="button" onClick="sendMail()"> Send Mail! </button>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement