Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Simpliest Mailer - A simple mailer written in PHP filter_list
Author
Message
Simpliest Mailer - A simple mailer written in PHP #1
A simple mailer to test the php mail function on a webserver or to simply send emails.

index.html
Code:
<html>
<title>Simpliest Mailer</title>
<center>
<table>
<form action="1.php" target="frame1">
<tr><td>Email : </td><td><input type="text" name="email"></td></tr>
<tr><td>Title : </td><td><input type="text" name="title"></td></tr>
<tr><td>Message : </td><td><input type="text" name="message"></td></tr>
<tr><td></td><td><input type="submit" name="Send" value="send"></td></tr>
</form>
</table>
<iframe name="frame1" frameborder="0" width="100%" height="100%">
</center>
</html>

1.php
Code:
<?php
$email = $_GET["email"];
$title = $_GET["title"];
$message = $_GET["message"];
mail($email, $title, $message);
echo "<center>Just send a email.</center>";
?>

Download: (Updated 02/03/2019)
http://www.filefactory.com/file/14wchukm...er%202.rar

Virus Scan
https://www.virustotal.com/#/file/2940b5.../detection
(This post was last modified: 03-02-2019, 10:03 PM by hacxx.)

[+] 1 user Likes hacxx's post
Reply





Messages In This Thread
Simpliest Mailer - A simple mailer written in PHP - by hacxx - 02-07-2019, 01:16 PM



Users browsing this thread: 1 Guest(s)