Perl Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPerl Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old October 28th, 1999, 12:45 PM
matthijs
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Hi,

I'm totally new in this stuff, i just started with perl. I know how to set up some basic script and stuff, but that's it. I'm from the netherlands, so don't blame me on my bad english.

I want to make an html form that sends an email back depending on the age.
Example: for age 8-14 send email 1
for age 15-23 send email 2

etc..

Is there a script somewhere what is able to do such things, or is there anybody who can help me?

Matthijs

[This message has been edited by matthijs (edited 10-29-99).]

Reply With Quote
  #2  
Old October 30th, 1999, 05:43 PM
Entity42
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
OK here's a basic outline of how to do it,
I'm presuming you have the ages, email adresses and cgi-access of course URL

if ($age <= 14) {

open MAIL, "|mail $emailaddress" or die $!;
print MAIL "You're to young to see the movie";
close MAIL or die $!;

}

else {
open MAIL "|mail $emailaddress" or die $!;
print MAIL "You can see the movie";
close MAIL or die $!;
}


...........

And that's basically it.
You can treat the 'mail' program as you would a file handle. Just don't forget to insert the pipe.




Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPerl Programming > Respond email that dpends on age...help

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap