[Html] Email joke to your site BY:ME
Email joke to your siteV1 by:me
here I let the html for websites.
with this code you can send html email
joked to friends or use it for scamming
Download: http://rapidshare.com/files/20701694...u_web.rar.html
Previous: http://img135.imageshack.us/img135/3370/cce.png
VT: http://www.virustotal.com/es/analisi...bdf567e5a1ebe3
Sundance
Re: [Html] Email joke to your site BY:ME
err,, is it just me being stupid or is it not possible to send a mail with pure HTML? :S
Re: [Html] Email joke to your site BY:ME
Quote:
Originally Posted by
AngryCat
err,, is it just me being stupid or is it not possible to send a mail with pure HTML? :S
-.- the code for your web is html but the sistem is php
Re: [Html] Email joke to your site BY:ME
Re: [Html] Email joke to your site BY:ME
Where is emailbroma.php... It not work whiout that
Re: [Html] Email joke to your site BY:ME
Quote:
Originally Posted by
caja
Where is emailbroma.php... It not work whiout that
-.- the php is already in a web with this html you only have to uupload to your web and sends normaly
Re: [Html] Email joke to your site BY:ME
Quote:
Originally Posted by
Sundance
-.- the php is already in a web with this html you only have to uupload to your web and sends normaly
So you say .html contains your php code...
Re: [Html] Email joke to your site BY:ME
Your .html connects to your server with the .php script? Why not just release the php script at the same time? It's easy.
<?php
$to = "recipient@example.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$headers = "From: sender@example.com\r\n" .
"X-Mailer: php";
if (mail($to, $subject, $body, $headers)) {
echo("<p>Message sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>
Re: [Html] Email joke to your site BY:ME
No offence, but.. this kind of fails...
I mean.. it's not really that special or anything.