Script to Sending email anonymously

Robyries

Senior Member
Joined
Feb 27, 2018
Messages
979
Reaction score
182
Hi,.

Long time ago I have this script, Just upload to your server. And you ready to sent it.

You can custom your email @whateveryouwant.com

And the email will arrive in your inbox..

Anyone has this script., and willing to share it?
 
You can do this easily with PHP (see code below) but you're inbox rate will be terrible because of SPF, DMARC and other anti-spam stuff that is common nowadays.

Code:
<?php
$to = "[email protected], [email protected]";
$subject = "HTML email";

$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>This email contains HTML Tags!</p>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
</table>
</body>
</html>
";

// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";

// More headers
$headers .= 'From: <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";

mail($to,$subject,$message,$headers);
?>
 
Back
Top