Previous Thread
Next Thread
Print Thread
Rate Thread
#21906 06/10/02 12:10 PM
Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
OP Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
aaight, this is a project for those of you who are good with Java, perl, vb, just about any web based protocoll, i leave the languages up to you...

This mailer will allow the user to view it as a standard mail form:

User From:
User To:
Date:
Time:
Subject:
Message:

The only difference than most forms is that it gives you access to set the from address. I have seen it done, and by making this post i expect to see it again. I would like it to have a "Password" thing at the top to stop unwanted access to the mailer. I also would like an option to have it run through either Sendmail or SMTP (or linux/windows as host providers would say).

This project would be beneficial to many, I believe that I've seen it done in perl many times and I'd like to see it done again, and possibly made a lot better.

If you have any questions or comments please respond to this thread, if you've completed the project, please email it to me or contact me on aim or the irc server.

Thank you all for your time, and I look forward to hearing back from all of you.
Gizmo


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
#21907 06/10/02 06:17 PM
Joined: Mar 2002
Posts: 1,273
DollarDNS Owner
Offline
DollarDNS Owner
Joined: Mar 2002
Posts: 1,273
You're saying a webpage form right? Cause this is one hella easy project if you're asking for a CGI script using SendMail... I could get it done in 15 minutes (since I'd pretty much be using code I've already written for other projects)


Domain Registration, Hosting, Management
http://www.dollardns.net
#21908 06/10/02 09:36 PM
Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
OP Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
cgi/perl/java/whatever heh doesn't matter so long as it works.


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
#21909 06/12/02 02:19 AM
Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
OP Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
Anything yet guys? ::waits::


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
#21910 06/12/02 11:17 AM
Joined: Mar 2002
Posts: 122
Member
Offline
Member
Joined: Mar 2002
Posts: 122
Why not make it in VB.
..
I remember once when olo had shown me some control he made for vb...
it was designed to make mailers much easyer...
and secret...
It was pretty cool..
Maybe we can get hold of it.

#21911 06/12/02 12:55 PM
Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
OP Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
Well, because I want this web based... If you could make his VB application web based by all means. I don't care what language its in so long as it works.


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
#21912 06/12/02 02:31 PM
Joined: Mar 2002
Posts: 1,273
DollarDNS Owner
Offline
DollarDNS Owner
Joined: Mar 2002
Posts: 1,273
ja, it's possible to do in VB - but it'll take some skill and a VB hack. For sure perl is da way to go.

And I'd already have it done if I had perl and apache on this computer. I could still do it if nobody else can.


Domain Registration, Hosting, Management
http://www.dollardns.net
#21913 06/12/02 02:33 PM
Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
OP Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
lol do it SR heh.. I have the just of something in perl, but its a [censored], i can't get it to get the NAME and FROM variables done correctly, so i'd like someone to help or do one heh...


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
#21914 06/14/02 07:17 AM
Joined: Mar 2002
Posts: 1,273
DollarDNS Owner
Offline
DollarDNS Owner
Joined: Mar 2002
Posts: 1,273
Well, I had started on a longer than 15-min version that was pretty kick but I accidentally closed notepad without saving - [censored] on me.

Well, so now I don't want to do anything but the least I have to. So could you make a form for me so that I can make the script to back it up?


Domain Registration, Hosting, Management
http://www.dollardns.net
#21915 06/14/02 09:58 AM
Joined: Mar 2002
Posts: 562
UGN Supporter
Offline
UGN Supporter
Joined: Mar 2002
Posts: 562
This is stricktly send mail and php But it requiers a password to send mail. First part is the form which would be an html page. second is the php page. So 2 seperate pages. You can have the password in the php file since the browser can not veiw source and see the actual php. (I know you know that gizzy, but figure newbies might not.)

This script allows you to specify what e-mail addy the mail came from. What ever you type in as your e-mail address is what the person who receives the mail will have to reply to. heh, I just finished it for my site.

Code
  
<FORM ACTION="Mail.php" METHOD="POST"> 
<center>
<font size="5" color="#FFFFFF">UGN Mailer</font>

</center>
Password

<input type="password" name="passwd" size="20" maxlength="30">


Your Freinds name
 
<INPUT TYPE="text" NAME="freind" SIZE="20" MAXLENGTH="30">

 
 
Your Name
 
<INPUT TYPE="text" NAME="sender" SIZE="20" MAXLENGTH="30">

 
 
Their e-mail address
 
<INPUT TYPE="text" NAME="sendto" SIZE="20" MAXLENGTH="30">

 

Your e-mail address

<INPUT TYPE="text" NAME="senderemail" SIZE="20" MAXLENGTH="30">

 
 
Your message about this site
 
<textarea cols="50" rows="8" NAME="message">Enter
your message here</text>

 
<INPUT TYPE="submit" VALUE="Send it!"> 
</form>
Code
 
<?php 
if($passwd == "insert password here") {
mail ("$sendto", "$freind... $sender wants you to 
check this site out", "$message !\n\n So join
your freind and others \n http://rrfn.promodtecnologies.com",
"From: ".$sender."<".$senderemail.">\r\n To: ".$freind."<".$sendto.">\r\n 
Reply-To: ".$sender."<$senderemail>\r\n"); 
  
  }
else {echo "You need to have access to use this tool.  So back da [censored] up foo!";}
?>

#21916 06/14/02 12:28 PM
Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
OP Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
i'll check it out learner.

The reason I wanted it in java/perl though is so that on some systems which do not support php can run it.


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
#21917 06/14/02 06:21 PM
Joined: Mar 2002
Posts: 562
UGN Supporter
Offline
UGN Supporter
Joined: Mar 2002
Posts: 562
Yea but see this is the closest thing you got. laugh

Nah I already had it done and it was prety close to what you were asking for. I dosen't let you chose between smtp or sendmail either. It falls short in a few areas of what you wanted. But it's a start. <img border="0" alt="[Joker]" title="" src="graemlins/joker.gif" />

#21918 06/25/02 07:21 PM
Joined: Mar 2002
Posts: 562
UGN Supporter
Offline
UGN Supporter
Joined: Mar 2002
Posts: 562
Ever set this up?


Link Copied to Clipboard
Member Spotlight
Phatal
Phatal
Houston, TX
Posts: 298
Joined: April 2004
Forum Statistics
Forums41
Topics33,840
Posts68,858
Average Daily Posts1
Members2,176
Most Online3,253
Jan 13th, 2020
Latest Postings
Where and how do you torrent?
by danni75 - 03/01/24 05:58 AM
Animation,
by JohanKaariainen - 08/15/19 01:18 AM
Blackbeard.....
by Gremelin - 10/03/18 07:02 PM
my old account still exists!
by Crime - 08/10/18 02:47 PM
Okay WTF?
by HenryMiring - 09/27/17 01:45 AM
The History Thread...
by Gremelin - 08/11/17 12:11 PM
My friend NEEDS your HELP!
by Lena01 - 07/21/17 12:06 AM
I'm having fun with this guy.
by gabithompson730 - 07/20/17 01:50 AM
I want to upgrade my phone
by gabithompson730 - 07/20/17 01:49 AM
Doom 3
by Cyrez - 09/11/14 08:58 PM
Amazon Gift Card Generator/KeyGen?te
by Gecko666 - 08/22/14 09:21 AM
AIM scene 99-03
by lavos - 09/02/13 08:06 AM
Planetside 2
by Crime - 03/04/13 07:10 AM
Beta Testers Wanted
by Crime - 03/04/13 06:55 AM
Hello Everyone
by Gremelin - 02/12/12 06:01 PM
Tracfone ESN Generator
by Zanvin Green - 01/18/12 01:31 PM
Python 3 issue
by Testing - 12/17/11 09:28 PM
tracfone airtime
by Drache86 - 07/30/11 03:37 AM
Backdoors and the Infinite
by ZeroCoolStar - 07/10/11 03:52 AM
HackThisZIne #12 Releaseed!
by Pipat2 - 04/28/11 09:20 PM
gang wars? l33t-wars?
by Gremelin - 04/28/11 05:56 AM
Consolidate Forums
by diggin2deep - 04/21/11 10:02 AM
LAN Hacking Noob
by Gremelin - 03/12/11 12:42 AM
Top Posters
UGN Security 41,392
Gremelin 7,203
§intå× 3,255
SilentRage 1,273
Ice 1,146
pergesu 1,136
Infinite 1,041
jonconley 955
Girlie 908
unreal 860
Top Likes Received
Ghost 2
Cyrez 1
Girlie 1
unreal 1
Crime 1
Powered by UBB.threads™ PHP Forum Software 7.7.5