stie cineva un script executabil si in php cu care as putea sa trimit e-mailuri anonime?
ceva in genul lui http://www.cube.cefaci.ro
sau daca nu, de unde as putea sa scot de pe net ceva
Email Anonim
14 mesaje
• Pagina 1 din 1
Incearca php help: sendmail
Incearca http://www.hotscripts.com
Incearca http://www.hotscripts.com
- dinu
- Junior Member
- Mesaje: 843
- Membru din: Mie Noi 21, 2001 12:00 am
se poate face cu orice sendmail.php
http://phpformgen.sourceforge.net
aici gasesti un form generator
http://phpformgen.sourceforge.net
aici gasesti un form generator
some people deserve to die
-
vali - Mesaje: 5729
- Membru din: Mar Iul 03, 2001 11:00 pm
http://squirrelmail.sourceforge.net/
Gasesti aici tot ce vrei sa stii.
Gasesti aici tot ce vrei sa stii.
- dinu
- Junior Member
- Mesaje: 843
- Membru din: Mie Noi 21, 2001 12:00 am
am gasit un form, da nush de ce trimite de la adresa knicksonline@lycos.co.uk
ce as putea sa fac ca adresa care sa apara la destinatar sa fie webmaster@knicksonline.tk?
asta e emailform.php:
end part one
ce as putea sa fac ca adresa care sa apara la destinatar sa fie webmaster@knicksonline.tk?
asta e emailform.php:
- Cod: Selectaţi tot
<HTML>
<HEAD>
<TITLE>Email Form v1.1 - Powered by: ([url]http://www.phpscriptcenter.com/emailform.php[/url])</TITLE>
</HEAD>
<BODY BGCOLOR="#ffffff">
<!--
Powered by: Email Form Version 1.1 ([url]http://www.phpscriptcenter.com/emailform.php[/url])
-->
<?php
///////////////////////////////////////////////
// //
// Email Form v 1.1 //
// ----------------------------------------- //
// by Graeme (webmaster@phpscriptcenter.com) //
// [url]http://www.phpscriptcenter.com[/url] //
// //////////////////////////////
// PHP Script CENTER offers no warranties on this script. //
// The owner/licensee of the script is solely responsible for any //
// problems caused by installation of the script or use of the script //
// //
// All copyright notices regarding Email Form, must remain //
// intact on the scripts and in the HTML for the scripts. //
// //
// (c) Copyright 2001 PHP Script CENTER //
// //
// For more info on Email Form, //
// see [url]http://www.phpscriptcenter.com/emailform.php[/url] //
// //
///////////////////////////////////////////////////////////////////////////
// your name
$yourname = "Your Name";
// your email
$youremail = "webmaster@knicksonline.tk";
// Default Send Page
$yourdefaultsend = "http://www.phpscriptcenter.com/sent.php";
////////////////////////////////////////////////////////////////////////////
// DO NOT EDIT BELOW THIS LINE //
////////////////////////////////////////////////////////////////////////////
if($submitform) {
$dcheck = explode(",",$require);
while(list($check) = each($dcheck)) {
if(!$$dcheck[$check]) {
$error .= "Missing $dcheck[$check]
";
}
}
if($error) {
?>
<P>[align=center]<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0">
<TR>
<TD WIDTH="100%" BGCOLOR="#004080">
<TABLE WIDTH="394" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR>
<TD WIDTH="26%" BGCOLOR="#004080">
<P><B><FONT COLOR="#ffffff" SIZE="-1" FACE="Verdana">Error</FONT></B></TD>
</TR>
<TR>
<TD WIDTH="26%" BGCOLOR="#ffffff">
<FONT COLOR="#000000" SIZE="-1" FACE="Verdana"><?php echo $error; ?></FONT></TD>
end part one
X
KNICKSONLINE.COM
KNICKSONLINE.COM
-
rady - Junior Member
- Mesaje: 319
- Membru din: Dum Noi 10, 2002 12:00 am
part two: asta vine in continuare la codul de mai sus:
- Cod: Selectaţi tot
</TR>
</TABLE></TD>
</TR>
</TABLE>[/align]
<P>[align=center] [/align]</P>
<P>[align=center]<FONT SIZE="-2" FACE="Verdana"><B>Powered by:</B> <A HREF="http://www.phpscriptcenter.com/emailform.php">Email Form</A> Version 1.1</FONT>[/align]</P>
</BODY></HTML>
<?php
exit();
}
if ($fromname) {
$yeshow = "\nFrom, $fromname\n";
}
mail($toemail,"$subject","
$message
$yeshow
","From: $fromname <$fromemail>");
header("Location: $sendpage");
exit();
} else {
?>
<FORM ACTION="emailform.php" METHOD="POST">
<P>[align=center]<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0">
<TR>
<TD WIDTH="100%" BGCOLOR="#004080">
<TABLE WIDTH="394" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR>
<TD COLSPAN="2" BGCOLOR="#004080">
<B><FONT COLOR="#ffffff" SIZE="-1" FACE="Verdana">Contact Form</FONT></B></TD>
</TR>
<TR>
<TD WIDTH="48%" BGCOLOR="#ffffff">
<B><FONT COLOR="#000000" SIZE="-1" FACE="Verdana">Your Name:</FONT></B></TD>
<TD WIDTH="52%" BGCOLOR="#ffffff">
<INPUT TYPE="hidden" NAME="fromname" value="rady">
</TD>
X
KNICKSONLINE.COM
KNICKSONLINE.COM
-
rady - Junior Member
- Mesaje: 319
- Membru din: Dum Noi 10, 2002 12:00 am
part three : tot in continuare
end part three
- Cod: Selectaţi tot
</TR>
<TR>
<TD WIDTH="48%" BGCOLOR="#ffffff">
<B><FONT COLOR="#000000" SIZE="-1" FACE="Verdana">Your Email:</FONT></B></TD>
<TD WIDTH="52%" BGCOLOR="#ffffff">
<INPUT type=hidden NAME="fromemail" TYPE="text" SIZE="25" value=webmaster@knicksonline.tk>
</TD>
</TR>
<TR>
<TD COLSPAN="2" BGCOLOR="#ffffff">
<B><FONT COLOR="#000000" SIZE="-1" FACE="Verdana">Message:
<INPUT
TYPE="hidden" NAME="subject" VALUE="Contact Form">
<INPUT NAME="toemail" TYPE="text" SIZE="25">
<INPUT TYPE="hidden" NAME="toname" VALUE="<?php echo $yourname; ?>">
<INPUT TYPE="hidden" NAME="require" VALUE="fromname,fromemail,message">
<INPUT TYPE="hidden" NAME="sendpage" VALUE="<?php echo $yourdefaultsend; ?>">
<TEXTAREA NAME="message" ROWS="5" COLS="45"></TEXTAREA></FONT></B></TD>
</TR>
</TABLE></TD>
</TR>
</TABLE>[/align]</P>
<P>[align=center]<INPUT NAME="submitform" TYPE="submit" VALUE="Submit">[/align]</FORM></P>
<P>[align=center] [/align]</P>
<P>[align=center]<FONT SIZE="-2" FACE="Verdana"><B>Powered by:</B> <A HREF="http://www.phpscriptcenter.com/emailform.php">Email Form</A> Version 1.1</FONT>[/align]</P>
</BODY></HTML>
<?php
exit();
}
?>
end part three
X
KNICKSONLINE.COM
KNICKSONLINE.COM
-
rady - Junior Member
- Mesaje: 319
- Membru din: Dum Noi 10, 2002 12:00 am
iar asta e mail.htm:
- Cod: Selectaţi tot
<HTML><HEAD><TITLE>mail</TITLE>
<FORM ACTION="emailform.php" METHOD="POST">[align=center]
<INPUT TYPE="hidden" NAME="fromname" VALUE="rady">
<INPUT TYPE="hidden" NAME="fromemail" VALUE="webmaster@knicksonline.tk"><P>
<INPUT TYPE="hidden" NAME="sendpage" VALUE="http://www.phpscriptcenter.com/sent.shtml">
<b>Catre: </b><INPUT NAME="toemail" TYPE="text" SIZE="25">
X
KNICKSONLINE.COM
KNICKSONLINE.COM
-
rady - Junior Member
- Mesaje: 319
- Membru din: Dum Noi 10, 2002 12:00 am
in continuare:
incercati si voi sa trimiteti sa vedeti ca il primiti de la knicksonline@lycos.co.uk
de ce?
- Cod: Selectaţi tot
<b>Subiect: </b><INPUT NAME="subject" TYPE="text" SIZE="25"><p>
<INPUT TYPE="hidden" NAME="require" VALUE="fromname,fromemail,message">
<B>Message</B> *</FONT>
<TEXTAREA NAME="message" ROWS="5" COLS="41"></TEXTAREA></P>
<P><INPUT NAME="submitform" TYPE="submit" VALUE="Submit">[/align]</FORM></P>
incercati si voi sa trimiteti sa vedeti ca il primiti de la knicksonline@lycos.co.uk
de ce?
X
KNICKSONLINE.COM
KNICKSONLINE.COM
-
rady - Junior Member
- Mesaje: 319
- Membru din: Dum Noi 10, 2002 12:00 am
adresa e http://members.lycos.co.uk/knicksonline/e-m.html
orice ai pune la Your email apare tot knicksonline@lycos.co.uk
orice ai pune la Your email apare tot knicksonline@lycos.co.uk
X
KNICKSONLINE.COM
KNICKSONLINE.COM
-
rady - Junior Member
- Mesaje: 319
- Membru din: Dum Noi 10, 2002 12:00 am
da, stiu, asa si vreau
mailurile trimise sa aiba la expeditor webmaster@knicksonline.tk , nu?
chestia e ca la expeditor apare knicksonline@lycos.co.uk
mailurile trimise sa aiba la expeditor webmaster@knicksonline.tk , nu?
chestia e ca la expeditor apare knicksonline@lycos.co.uk
X
KNICKSONLINE.COM
KNICKSONLINE.COM
-
rady - Junior Member
- Mesaje: 319
- Membru din: Dum Noi 10, 2002 12:00 am
mah baieti, luati dreq un mai bomber de pe net si trimiteti ce mailuri si mai ales cate vreti , cu sender din categoria " PNC@Pnc.com
- stiu DE TOATE
- Junior Member
- Mesaje: 1
- Membru din: Lun Mar 29, 2004 12:18 am
- Localitate: IN COOR
14 mesaje
• Pagina 1 din 1
Cine este conectat
Utilizatorii ce navighează pe acest forum: Niciun utilizator înregistrat şi 1 vizitator