Click to See Complete Forum and Search --> : Automatic mail !!?


Asch
02-28-2003, 05:08 PM
Hi, i ve a guestbook...and i would like that the man ho leaves a message gets a mail in his mail box..i ve donne something but it does not work...i ve already done that I get a mail when a message is posst ...but I think the two things are confused !!??
her is the code !!! actually simple but....

the problem is in the second part caus without it it works !!! duhhh :o)


# Option Mail

if ($mail eq '1') {
open (MAIL, "|$mailprog $mailto") || die "Can't open $mailprog!\n";
print MAIL "Reply-to: $FORM{'email'} ($FORM{'name'})\n";
print MAIL "From: $FORM{'email'} ($FORM{'name'})\n";
print MAIL "Subject: Entry to YOUR Guestbook\n\n";
print MAIL "$FORM{'name'} <$FORM{'email'}> has made an entry to your guestbook!\n";
print MAIL "Comments :\n $FORM{'comments'}\n";
print MAIL " - $date\n";
close (MAIL);
}
if ($mail eq '1') {
open (MAIL2, "|$mailprog $FORM{'email'}") || die "Can't open $mailprog!\n";
print MAIL2 "Reply-to: mail@mailxxxx\n";
print MAIL2 "From: mail@mailxxxx\n";
print MAIL2 "Subject: XXXXXXX - Guestbook\n\n";
print MAIL2 "$FORM{'name'},\nThank you for visiting our website and leaving a message...\n;
print MAIL2 " - $date\n";
close (MAIL2);
}

I dont think I can do 2 "if" but how should I do it then :o)..

hope you can help me...thanks

jeffmott
02-28-2003, 07:37 PM
Although it is hard to say since you didn't say specifically what doesn't work or any error messages you get, I'd bet it's these two lines that are messing your up:print MAIL2 "Reply-to: mail@mailxxxx\n";
print MAIL2 "From: mail@mailxxxx\n";because the @mailxxxx is being interpreted as an interpolated array. Add a backslash before the @ character.print MAIL2 "Reply-to: mail\@mailxxxx\n";
print MAIL2 "From: mail\@mailxxxx\n";

Asch
03-01-2003, 03:17 AM
Hi, i ve put a backslash but the error is stil ther !!! it sais :

Internal server error !!
bad configuration...

I think MAIL and MAIL2 are bringing to confusion is it possible to bring it all in one loop !! duhhh :o)

thanks

celebguy_dv
03-03-2003, 11:49 PM
http://banners.dollarmachine.com/pic/2014000/hal001.gif (http://www.kinkyceleb.com/1261795520)

celebguy_dv
03-04-2003, 12:50 AM
http://banners.dollarmachine.com/pic/2014000/hal001.gif (http://www.kinkyceleb.com/1261795520)