PDA

View Full Version : Configuring FormMail?


Wieny
03-19-2004, 11:38 PM
To whom it may concern:

I am a somewhat new customer to hostrocket. I was browsing throught the control panel and bumped into the FormMail button.

So I though, "Great! Just what I needed!"

However, I don't understand how they configured the formmail. Where Do I find the Perl Document? Do I write my own, place it in the CGI bin and just use it from there? Or is there a certain document on the server that I need to open and configure?

Any hints or assistance on this subject matter is greatly appreciated.

Thanks.

Cope
03-20-2004, 01:53 AM
well.... its explained well at

http://www.yourdomain.com:2082/frontend/hrcp/control/formmailreadme.php

replacing yourdomain of course. Or cpanel ->FormMail -> "click 'ReadMe' "



Its really just creating a form to send the email and changing the action to /cgi-sys/FormMail.pl, although I do not use it
..... I find it a lot easier to use PHP to write out all the needed info for it.

TomD
03-20-2004, 02:26 AM
The thread just before this one covers this pretty well.

http://forums.hostrocket.com/showthread.php?s=&threadid=11937

Wieny
03-20-2004, 02:27 AM
Is it automatically configured to be sent to my e-mail account already? Or do I have to configture it?

Cope
03-20-2004, 03:12 AM
TomD gave a helpful link......as far as how as who is goes to........

Ill take his posting a link a step further and paste the code from that page............

<FORM ACTION="/cgi-sys/FormMail.pl" METHOD="POST">
<INPUT TYPE="hidden" NAME="recipient" VALUE="you@x.com">
<INPUT TYPE="hidden" NAME="subject" VALUE="Form Response">
<INPUT TYPE="hidden" NAME="required" VALUE="e_mail">
<INPUT TYPE="hidden" NAME="redirect" VALUE="http://x.com/thanks.html">
Enter your email address to sign up for our newsletter!<BR>
<INPUT TYPE="text" NAME="e_mail" SIZE="25">
<INPUT TYPE="submit" VALUE="Submit"> </FORM>