![]() |
|
Simpliest Mailer - A simple mailer written in PHP - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: PHP (https://sinister.li/Forum-PHP) +--- Thread: Simpliest Mailer - A simple mailer written in PHP (/Thread-Simpliest-Mailer-A-simple-mailer-written-in-PHP) |
Simpliest Mailer - A simple mailer written in PHP - hacxx - 02-07-2019 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/14wchukmvr19/Simpliest%20Mailer%202.rar Virus Scan https://www.virustotal.com/#/file/2940b5364b6312b0523c3519b82054404c5a41d17d412fe2d11e639961d985e2/detection RE: Simpliest Mailer - A simple mailer written in PHP - mothered - 02-08-2019 "Simple" Is the operative word, yet effective. I coded something very similar around a decade ago, and It worked fine. Thanks for this. RE: Simpliest Mailer - A simple mailer written in PHP - darkninja1980 - 02-08-2019 the very nice simple code in PHP. Very effective coding. RE: Simpliest Mailer - A simple mailer written in PHP - aabee - 01-16-2020 Link dead. What is different between index.html and 1.php.Does it means that index.html is code and 1.php is program or what. RE: Simpliest Mailer - A simple mailer written in PHP - hacxx - 01-16-2020 (01-16-2020, 08:34 PM)aabee Wrote: Link dead. 1.html -> Is a HTML form 2.php >- A simple php mailer to send the email RE: Simpliest Mailer - A simple mailer written in PHP - hacxx - 09-05-2020 Download: (Updated 05/09/2020) https://filecrypt.cc/Container/9119CAE685.html https://www.file-upload.com/0y1zkna19jln http://nitroflare.com/view/6D64B38A6291364/Simpliest_Mailer_2.rar http://www.filefactory.com/file/4j61nsp1u7h6/Simpliest%20Mailer%202.rar |